Skip to content

Commit

Permalink
chore: add checkout to deploy job
Browse files Browse the repository at this point in the history
 - no wonder it can't find the deploy script 😅
 - remove mac testing for now. It's cool to be able to do, but there's no platform specific code, and it takes longer to execute (sometimes up to 6 minutes)
 - add back python 3.7 and 3.8
  • Loading branch information
justindujardin committed Apr 22, 2021
1 parent 1afd9a4 commit ecbc5fa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.6, 3.9]
os: [ubuntu-latest]
python-version: [3.6, 3.7, 3.8, 3.9]

runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -40,6 +40,7 @@ jobs:
needs: "build"
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v2
with:
Expand Down

0 comments on commit ecbc5fa

Please sign in to comment.