Skip to content

Commit

Permalink
maybe final test workflow?
Browse files Browse the repository at this point in the history
  • Loading branch information
thecrabsterchief committed Aug 14, 2023
1 parent 8ddde57 commit 6976bd2
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,27 @@ on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.x
python-version: "${{ matrix.python-version }}"

- name: Install dependencies
- name: Install pytest
run: |
python -m pip install --upgrade pip
pip install pytest
Expand Down

0 comments on commit 6976bd2

Please sign in to comment.