Remove poetry #363
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
# Runs tests via nox | |
# Runs on pull requests to main | |
name: Test on pull request | |
on: | |
pull_request: | |
branches: [main, master] | |
jobs: | |
build: | |
strategy: | |
max-parallel: 1 | |
matrix: | |
os: [ubuntu-20.04] | |
python-version: ["3.8"] | |
runs-on: "${{ matrix.os }}" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: "Set up Python ${{ matrix.python-version }}" | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- run: curl -fsSL https://d2lang.com/install.sh | sh -s -- | |
- run: pip install nox==2022.8.7 | |
- run: pip install poetry==1.2.2 | |
- run: nox -p ${{ matrix.python-version }} | |