Skip to content

Merge pull request #16 from francovp/feat-merge-request-only-with-rev… #24

Merge pull request #16 from francovp/feat-merge-request-only-with-rev…

Merge pull request #16 from francovp/feat-merge-request-only-with-rev… #24

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python environment and install dependencies
uses: ./.github/actions/setup
with:
python-version: "3.10"
- name: Ruff Check
run: poetry run ruff check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python environment and install dependencies
uses: ./.github/actions/setup
with:
python-version: "3.9"
- name: Ruff Check
run: poetry run pytest tests