Skip to content

enable github-actions dependabot (#197) #496

enable github-actions dependabot (#197)

enable github-actions dependabot (#197) #496

Workflow file for this run

name: test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
go: ["1.23", "1.24"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- run: make test-nodocker
- if: matrix.go == '1.24'
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}