Skip to content

parent project ci

parent project ci #76

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout

Check failure on line 10 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
uses: actions/checkout@v3
- name: load cached poetry installation
id: cached-poetry
uses: actions/cache@v3
with:
path: ~/.local
key: poetry-v1-${{ hashFiles("pyproject.toml") }}
- name: install poetry
if: steps.cached-poetry.outputs.cache-hit != "true"
uses: snok/install-poetry@v1
with:
version: 1.6.1
- name: install python
id: setup-python
uses: actions/setup-python@v4
with:
cache: "poetry"
python-version-file: "pyproject.toml"
- name: make sure poetry lockfile is up to date
run: poetry check --lock
- name: install deps
if: steps.setup-python.outputs.cache-hit != "true"
run: poetry install --no-interaction --no-root
- name: bootstrap
run: make bootstrap