/
githubmirror
/
nftables
Обзор
Документация
Войти
/
githubmirror
/
nftables
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/push.yml
37 строк
795 B
Antonio Ojea
Add integration tests for nftables package
15 янв 2025, 14:42
15 янв 2025, 14:42
c9a67cc
Код
Авторство
О чём код?
name: Push on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: name: CI runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up Go 1.x uses: actions/setup-go@v4 with: # Run on the latest minor release of Go 1.20: go-version: ^1.20 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)