Skip to content

Update CI

Update CI #84

Workflow file for this run

name: main
on:
- pull_request
- push
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version:
- 3.9
os:
- ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: {{ $python-version }}

Check failure on line 21 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / main

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 21, Col: 27): A mapping was not expected
- name: Checkout code
uses: actions/checkout@v4
- name: Install poetry
run: |
pip3 install poetry
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Run checks
run: poetry run make check