mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-11-15 03:04:28 +00:00
11 lines
222 B
YAML
11 lines
222 B
YAML
|
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
|