skip another failing test #343
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: Formatting and unit tests | |
on: [push] | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# python-version: ["3.10", "3.11"] | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v2 | |
# - name: Setup Python | |
# uses: ./.github/actions/setup-actions | |
# - name: Install Poetry | |
# uses: snok/install-poetry@v1 | |
# with: | |
# virtualenvs-create: true | |
# virtualenvs-in-project: true | |
- name: Install Nox | |
uses: wntrblm/nox@2023.04.22 | |
with: | |
python-versions: "3.10,3.11" | |
# - name: Linter | |
# run: poetry run flake8 | |
# - name: Code Formatting | |
# uses: psf/black@stable | |
# - name: Type Check | |
# run: poetry run mypy open_rarity | |
- name: Unit tests | |
run: nox |