diff options
| author | alex <alex@pdp7.net> | 2024-06-02 19:54:14 +0200 |
|---|---|---|
| committer | alexpdp7 <alex@corcoles.net> | 2024-06-02 19:56:25 +0200 |
| commit | 40ddeb86b4255e931553f07c4f7e979ad6a0bd4a (patch) | |
| tree | 9edfe5fda33d68365220f7e840e525020beafb5d /.github | |
| parent | dccb810314e900d7bb153597e4e8473f874196cd (diff) | |
Add test workflow
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/test.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..0e79944b --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,13 @@ +on: + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: | + cd blog/ + pipx install poetry + poetry install + poetry run pytest |
