Switch from poetry to rye #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Basic CI | |
on: [push, pull_request] | |
jobs: | |
basic-ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: 'x64' # GH does not support arm64, i.e. modern Mac, only x64 | |
- name: Setup rye | |
uses: eifinger/setup-rye@v2 | |
- name: Install original package | |
run: rye sync | |
- name: Run the formatter | |
run: rye fmt -- --diff | |
- name: Run the linter | |
run: rye lint --fix | |
- name: Run the tests | |
run: rye test | |
- name: mypy | |
uses: jpetrucciani/mypy-check@master | |
with: | |
path: 'src' |