Skip to content

Commit

Permalink
fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechromancer committed Jan 28, 2024
1 parent 3f2c932 commit 820d641
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,18 @@ jobs:
run: |
pip install poetry
poetry install
- name: Install ASN database
run: |
pip install pyasn
pyasn_util_download.py --latestv46
pyasn_util_convert.py --single rib.*.bz2 asn.db
- name: Run tests
run: |
poetry run pytest --exitfirst --disable-warnings --log-cli-level=DEBUG
update:
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
needs: test
if: github.event_name == 'push' || github.event_name == 'schedule'
if: github.actor != 'dependabot[bot]' && (github.event_name == 'push' || github.event_name == 'schedule')
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand Down

0 comments on commit 820d641

Please sign in to comment.