Skip to content

Merge pull request #18 from Snailedlt/feature/update_readme_with_synt… #6

Merge pull request #18 from Snailedlt/feature/update_readme_with_synt…

Merge pull request #18 from Snailedlt/feature/update_readme_with_synt… #6

Workflow file for this run

name: test
on: push
# on:
# push:
# branches:
# - master
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
python-version:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python --version
- name: Run tests
run: ./test.py