1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-06-06 20:29:34 +00:00
py65/.github/workflows/main.yml
2021-12-26 16:16:29 -08:00

28 lines
556 B
YAML

name: Run all tests
on: [push]
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10"]
os: [ubuntu-18.04, windows-2019]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Show Python version
run: python -V
- name: Run the tests
run: python setup.py test -q