Skip to content

Removed all related to v1 #25

Removed all related to v1

Removed all related to v1 #25

Workflow file for this run

name: main
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -D warnings
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
with:
src: './src/fcp'
- uses: psf/black@stable
with:
options: "--check --verbose"
src: "./src/fcp"
version: "~= 24.0"
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.7", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install tox and any other packages
run: pip install tox
- name: Run tox
# Run tox using the version of Python in `PATH`
run: tox -e py