Skip to content

Merge pull request #29 from ForumViriumHelsinki/dependabot/pip/werkze… #17

Merge pull request #29 from ForumViriumHelsinki/dependabot/pip/werkze…

Merge pull request #29 from ForumViriumHelsinki/dependabot/pip/werkze… #17

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
tags: [ "v*" ]
pull_request:
branches: [ "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
pip install --upgrade pip setuptools ruff
pip install -r requirements.txt
- name: Lint with ruff
run: |
ruff check --output-format=github .