Inox daily checks #159
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: Inox daily checks | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 20 * * *' | |
jobs: | |
tests: | |
name: test the inox binary | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22.x' | |
- name: Install dependencies | |
run: go mod download | |
- name: Build the inox binary - required by some tests | |
run: go build ./cmd/inox | |
- name: Add the current folder in $PATH | |
run: echo "${{ github.workspace }}" >> $GITHUB_PATH | |
- name: Run tests | |
run: go test -tags=reqbin -p=1 -parallel=1 -count=1 ./internal/... -timeout=5m | |
- name: Run tests with race detection | |
run: go test -race -tags=reqbin -p=1 -parallel=1 -count=1 ./internal/... -timeout=5m | |
govulncheck_job: | |
runs-on: ubuntu-latest | |
name: Run govulncheck | |
steps: | |
- id: govulncheck | |
uses: golang/govulncheck-action@v1 |