nftables/.github/workflows/push.yml

38 lines
795 B
YAML
Raw Normal View History

2020-12-30 08:21:48 -06:00
name: Push
on:
push:
2022-06-11 15:24:28 -05:00
branches: [ main ]
pull_request:
2022-06-11 15:24:28 -05:00
branches: [ main ]
2020-12-30 08:21:48 -06:00
jobs:
build:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2020-12-30 08:21:48 -06:00
- name: Set up Go 1.x
uses: actions/setup-go@v4
2020-12-30 08:21:48 -06:00
with:
# Run on the latest minor release of Go 1.20:
go-version: ^1.20
2020-12-30 08:21:48 -06:00
id: go
- name: Ensure all files were formatted as per gofmt
run: |
[ "$(gofmt -l $(find . -name '*.go') 2>&1)" = "" ]
- name: Run tests
run: |
go vet .
go test ./...
go test -c github.com/google/nftables
sudo ./nftables.test -test.v -run_system_tests
go test -c github.com/google/nftables/integration
(cd integration && sudo ../integration.test -test.v -run_system_tests)