Bump ruff from 0.1.9 to 0.3.1 #92
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
id: setup-python | |
with: | |
python-version-file: '.python-version' | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
id: cache-dependencies | |
with: | |
path: | | |
venv | |
key: ${{ runner.os }}-venv-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/*requirements.txt') }} | |
- name: Install dependencies | |
if: steps.cache-dependencies.outputs.cache-hit != 'true' | |
run: | | |
python -m venv venv | |
. venv/bin/activate | |
pip install --upgrade pip pip-tools | |
pip-sync requirements.txt dev-requirements.txt | |
- name: Run linter | |
run: | | |
. venv/bin/activate | |
make lint | |
- name: Get number of CPU cores | |
uses: SimenB/github-actions-cpu-cores@v2.0.0 | |
id: cpu-cores | |
- name: Run tests | |
run: | | |
. venv/bin/activate | |
make test -e SIMULTANEOUS_TEST_JOBS=${{ steps.cpu-cores.outputs.count }} | |
- name: Get coverage XML file | |
run: | | |
. venv/bin/activate | |
make coverage -e SIMULTANEOUS_TEST_JOBS=${{ steps.cpu-cores.outputs.count }} | |
- name: Publish code coverage | |
uses: paambaati/codeclimate-action@v5.0.0 | |
env: | |
CC_TEST_REPORTER_ID: 8ee335a0583342279062324a7dfebaf7a0543c508b2f31183587c2bc8300cb55 | |
with: | |
coverageLocations: | | |
${{github.workspace}}/coverage.xml:coverage.py |