Skip to content

Commit

Permalink
github workflows: add tests-all.yml
Browse files Browse the repository at this point in the history
First experimentation with Github Actions, runs only checks and unittests for
now. I didn't get tests cmdtests working yet.

Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
  • Loading branch information
kvalo committed Feb 24, 2024
1 parent f97fe29 commit 5575c37
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/tests-all.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: tests-all
on: [push]
jobs:
run-checks:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- run: sudo apt update
- run: sudo apt install pycodestyle pyflakes3
- run: ./run_tests checks
- run: sudo apt install python3-mock
- run: ./run_tests unittests

0 comments on commit 5575c37

Please sign in to comment.