Skip to content

Merge pull request #3 from LyraPhase/dependabot/github_actions/action… #18

Merge pull request #3 from LyraPhase/dependabot/github_actions/action…

Merge pull request #3 from LyraPhase/dependabot/github_actions/action… #18

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run tox with tox-gh-actions
uses: ymyzk/run-tox-gh-actions@main
with:
tox-version: "'>=4'"