Skip to content

Improve CI workflows and output #81

Improve CI workflows and output

Improve CI workflows and output #81

Workflow file for this run

name: linting
on:
push:
branches:
- devel
- master
pull_request:
branches:
- devel
- master
env:
NO_COLORS: true
jobs:
setup:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: |
pipx install poetry
- name: Set up Python
id: python
if: steps.cache.outputs.cache-hit != 'true'
uses: actions/setup-python@v4
with:
cache: 'poetry'
- name: Install dependencies
if: steps.python.outputs.cache-hit != 'true'
run: |
poetry install --no-root
lint:
needs: setup
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: |
pipx install poetry
- name: Set up Python
id: python
uses: actions/setup-python@v4
with:
cache: 'poetry'
- name: Install dependencies
run: |
poetry install
- name: Run tests
run: |
echo "::add-matcher::.github/matchers/ruff.json"
echo "::add-matcher::.github/matchers/unbehead.json"
poetry run -- make lint
echo "::remove-matcher owner=unbehead::"
echo "::remove-matcher owner=ruff::"