microblog.pub/.github/workflows/ci.yml
Workflow config file is invalid. Please check your config file: yaml: line 17: could not find expected ':'

20 lines
400 B
YAML

on:
push:
branches:
- 'v2'
jobs:
tests:
runs-on: ubuntu-latest
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 env use "3.10"
poetry install --no-interaction
- run: poetry run inv tests