Skip to content

Bump poetry version in actions #156

Bump poetry version in actions

Bump poetry version in actions #156

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
uses: snok/install-poetry@v1.3.4
with:
version: 1.7.1
# TODO Consider removing or caching
virtualenvs-create: true
- name: Install dependencies
run: |
make init
- name: Lint
run: |
make lint
- name: Test
run: |
make test