Skip to content

fix(cicd): proper env for deployment #141

fix(cicd): proper env for deployment

fix(cicd): proper env for deployment #141

Workflow file for this run

name: Check codebase
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.8", "3.10", "3.11"]
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install and configure poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install --no-interaction
- name: Run linter
run: make lint
- name: Run tests
run: make test