Skip to content

Commit

Permalink
Add parallel tests for python versions and multi-os
Browse files Browse the repository at this point in the history
  • Loading branch information
tbhaxor committed Apr 27, 2024
1 parent edb152c commit d303024
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/AstroPlasma.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: setup_python
name: Module Testing

on:
pull_request:
Expand All @@ -9,13 +9,17 @@ on:
branches:
- main
jobs:
python-env:
runs-on: ubuntu-latest
e2e_testing:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, 3.10, 3.11]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ matrix.python-version }}
cache: pip
- run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit d303024

Please sign in to comment.