Skip to content

Commit

Permalink
how about this
Browse files Browse the repository at this point in the history
  • Loading branch information
thecrabsterchief committed Aug 14, 2023
1 parent f660637 commit 6752d1d
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
name: Test
name: Run pytest

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
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:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
- name: Checkout repository
uses: actions/checkout@v2

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

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -e .
- name: Run pytest
run: |
pytest
run: pytest

0 comments on commit 6752d1d

Please sign in to comment.