Skip to content

Commit

Permalink
ci: add github-action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rynhndrcksn committed Sep 1, 2024
1 parent 60c824a commit c71c832
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/github-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "CI"

on:
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.22.x', '1.23.x' ]

steps:
- name: "Checking out code..."
uses: actions/checkout@v4
- name: "Installing Go..."
uses: WillAbides/setup-go-faster@v1
with:
go-version: ${{ matrix.go }}
- name: "Install dependencies..."
run: go mod download
- name: "Verifying dependencies..."
run: go mod verify
- name: "Vetting code..."
run: go vet ./...
- uses: dominikh/staticcheck-action@v1
with:
version: "latest"
install-go: false
cache-key: ${{ matrix.go }}
- name: "Running tests..."
run: go test -race -vet=off ./...

0 comments on commit c71c832

Please sign in to comment.