1
0
mirror of https://git.sr.ht/~tsileo/microblog.pub synced 2025-02-23 07:27:39 +01:00

Try GitHub actions for CI

This commit is contained in:
Thomas Sileo 2022-06-22 20:21:19 +02:00
parent d528369954
commit d6099ebffa

10
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,10 @@
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'poetry'
- run: poetry install
- run: poetry run inv tests