This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
fix(deps): update pre-commit hook lucas-c/pre-commit-hooks ( v1.5.4 → v1.5.5 ) #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "Pull Request: Validate" | |
on: | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ">=1.20" | |
cache: true | |
- name: Run Go test | |
run: go test -v ./src/ |