Skip to content

ci: publish: pin python version #183

ci: publish: pin python version

ci: publish: pin python version #183

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
Ubuntu:
name: "Ubuntu (python-${{ matrix.python }})"
timeout-minutes: 10
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: "${{ matrix.python }}"
- name: Install pipenv
run: make get-pipenv
- name: Install dependencies
run: make install-deps
- name: Run checks
run: make check