diff options
author | Arjun Satarkar <me@arjunsatarkar.net> | 2024-12-21 11:21:56 +0000 |
---|---|---|
committer | Arjun Satarkar <me@arjunsatarkar.net> | 2024-12-21 11:21:56 +0000 |
commit | 2df2e62042206cc04b82fca2a208d8c66d96a3b3 (patch) | |
tree | 4694ac34fc0232f5e01a77568718f0128ce1cc75 /.github/workflows | |
parent | 4ffc19bbbb2395b8204b852df325fe4b3c07e273 (diff) | |
download | srtfilter-2df2e62042206cc04b82fca2a208d8c66d96a3b3.tar srtfilter-2df2e62042206cc04b82fca2a208d8c66d96a3b3.tar.gz srtfilter-2df2e62042206cc04b82fca2a208d8c66d96a3b3.zip |
Add CI workflow
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/check.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 0000000..3b19e6b --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,13 @@ +on: [push, pull_request] +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v3 + with: + python-version: "3.12" + - uses: taiki-e/install-action@just + - run: | + pip install -r requirements.txt + just check |