Skip to content

Add devcontainer

Add devcontainer #1874

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: "actions/checkout@v2"
- name: Set up Python ${{ matrix.python-version }}
uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- name: Set up Poetry
uses: Gr1N/setup-poetry@v7
- name: "Install tox"
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox tox-gh-actions
- name: "Run tox targets for ${{ matrix.python-version }}"
run: python -m tox