Skip to content

Dropped Python 3.8. #28

Dropped Python 3.8.

Dropped Python 3.8. #28

Workflow file for this run

name: Fauxfactory Checks
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v4
- name: Install Rye
uses: eifinger/setup-rye@v2
- name: Pin the version of Python to be used
run: |
rye pin ${{ matrix.python-version }}
- name: Install dependencies
run: |
rye pin ${{ matrix.python-version }}
rye sync
- name: Run checks
run: |
make all
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v1