Skip to content

Merge pull request #17 from antoniojbt/codex/create-github-actions-wo… #25

Merge pull request #17 from antoniojbt/codex/create-github-actions-wo…

Merge pull request #17 from antoniojbt/codex/create-github-actions-wo… #25

Workflow file for this run

name: CI
on:
push:
branches: [ "**" ]
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install flake8 pytest
pip install -e .
- name: Lint
run: flake8 .
- name: Test
run: pytest -rP -v --cache-clear