Skip to content

pyproject.toml: remove Poetry #196

pyproject.toml: remove Poetry

pyproject.toml: remove Poetry #196

Workflow file for this run

name: "FileCheck.py on macOS"
on: [pull_request]
jobs:
build:
runs-on: macOS-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install Poetry
run: |
pipx install poetry
- name: Add Poetry to PATH
run: |
echo "PATH=$PATH:~/.local/bin" >> $GITHUB_ENV
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install
- name: Run tests
run: |
poetry run invoke check