Skip to content

Commit

Permalink
update ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TimoDiepers committed Jun 6, 2024
1 parent 42d015d commit 447b378
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
- "**.ya?ml" # captures both .yml and .yaml
- "LICENSE"
- ".gitignore"
- "**.ipynb" # ignore Jupyter notebooks
pull_request:
branches: [main, dev]
types: [opened, reopened] # excludes syncronize to avoid redundant trigger from commits on PRs
Expand All @@ -24,6 +25,7 @@ on:
- "**.ya?ml"
- "LICENSE"
- ".gitignore"
- "**.ipynb" # ignore Jupyter notebooks
workflow_dispatch: # also allow manual trigger, for testing purposes

jobs:
Expand All @@ -33,7 +35,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
py-version: ["3.10"]
py-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand All @@ -47,7 +49,7 @@ jobs:

# Create the conda environment
- name: Create conda environment
run: conda env create -f timex-environment.yaml
run: conda create -n timex -c conda-forge -c cmutel brightway25 bw_temporalis

# Install testing dependencies from pyproject.toml
- name: Install testing dependencies
Expand Down

0 comments on commit 447b378

Please sign in to comment.