Skip to content

fix: create jobname with wildcards of all jobs in job groups #27

fix: create jobname with wildcards of all jobs in job groups

fix: create jobname with wildcards of all jobs in job groups #27

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install poetry
run: pip install poetry
- name: Determine dependencies
run: poetry lock
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: poetry
- name: Install dependencies
run: |
poetry install
- name: Check formatting
run: poetry run black --check .
linting:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install poetry
run: pip install poetry
- name: Determine dependencies
run: poetry lock
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: poetry
- name: Install dependencies
run: |
poetry install
- name: Check code
run: poetry run flake8