Skip to content

Merge pull request #31 from ilya-nikolaev/develop #34

Merge pull request #31 from ilya-nikolaev/develop

Merge pull request #31 from ilya-nikolaev/develop #34

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: CI
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
cpython:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v3
- name: Set up ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install . -r requirements_dev.txt
- name: Run ruff
run: |
ruff check src/sulguk
- name: Run tests
run: |
pytest