Skip to content

hack: skip broken optimizer test #1016

hack: skip broken optimizer test

hack: skip broken optimizer test #1016

Workflow file for this run

name: Test
on:
push:
jobs:
test:
name: test
runs-on: ubuntu-latest
concurrency: ci-${{ github.ref }}
steps:
- name: Install bgpq4
run: |
wget http://ftp.us.debian.org/debian/pool/main/b/bgpq4/bgpq4_0.0.6-2_amd64.deb
sudo dpkg -i bgpq4*.deb
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: make test-setup
- run: make test
- name: Upload coverage report
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
- run: make test-teardown