Skip to content

Commit

Permalink
Merge pull request #1396 from Panquesito7/action_versions
Browse files Browse the repository at this point in the history
Update action and Python versions
  • Loading branch information
eliranwong committed Sep 27, 2023
2 parents c39491f + e04f013 commit b6cadc0
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
name: Python package

on: [push]

on: [push, pull_request, workflow_dispatch]
jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
python-version: [3.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -29,4 +27,4 @@ jobs:
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest
pytest

0 comments on commit b6cadc0

Please sign in to comment.