Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Write archive post #238

Write archive post

Write archive post #238

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
run: |
python -m pip install --upgrade pip
- name: Install tox
run: |
python -m pip install tox tox-gh-actions
- name: Run tox
run: |
python -m tox