add ci
This commit is contained in:
parent
c3ab4744d7
commit
0fe1b9dab3
1 changed files with 18 additions and 0 deletions
18
.github/workflows/ci.yml
vendored
Normal file
18
.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [master]
|
||||
|
||||
jobs:
|
||||
ci-check:
|
||||
runs-on: ubuntu-22.04
|
||||
name: Check CI
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version-file: '.python-version'
|
||||
- run: poetry install --with dev
|
||||
- run: ./ci.sh
|
Loading…
Add table
Reference in a new issue