mirror of
https://github.com/quantum5/bird-filter.git
synced 2025-04-24 00:51:57 -04:00
Run python tests on CI
This commit is contained in:
parent
b629588615
commit
abc11fb0ce
15
.github/workflows/python.yml
vendored
Normal file
15
.github/workflows/python.yml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
name: Run Python tests
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
jobs:
|
||||
amd64:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Python 3.11
|
||||
uses: actions/setup-python@v3
|
||||
with:
|
||||
python-version: '3.11'
|
||||
- name: Run Python unit tests
|
||||
run: python -m unittest discover .
|
Loading…
Reference in a new issue