Skip to content

Commit

Permalink
Update github-actions-demo.yml: matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-voelk committed Sep 27, 2024
1 parent b60f826 commit b4ed316
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@ run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:: ["ubuntu-latest"]
python-version: ["3.11.5"]
steps:
- name: Setup conda environment
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: false
python-version: ["3.11.5"]
python-version: ${{ matrix.python-version }}
miniforge-version: latest
- name: Conda info
run: |
Expand Down

0 comments on commit b4ed316

Please sign in to comment.