Skip to content

chore: update readme with more credit [ci-skip] #24

chore: update readme with more credit [ci-skip]

chore: update readme with more credit [ci-skip] #24

Workflow file for this run

name: test
on:
push:
branches:
- main
tags:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
name:
- "linting"
- "ubuntu-py310"
include:
- name: "linting"
python: "3.10"
os: ubuntu-latest
tox_env: "lint"
- name: "ubuntu-py310"
python: "3.10"
os: ubuntu-latest
tox_env: "py310"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox virtualenv
- name: Test build
run: "tox -e ${{ matrix.tox_env }}"