Skip to content

Commit

Permalink
Adding Windows and MacOS to matrix testing
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewReid854 committed Apr 3, 2021
1 parent f85151e commit 4f8fc23
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
# This workflow will install Python dependencies and run tests with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/guides/building-and-testing-python

name: Build and Test

Expand All @@ -12,9 +12,10 @@ on:
jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9]

steps:
Expand Down

0 comments on commit 4f8fc23

Please sign in to comment.