Skip to content

Commit

Permalink
test: run across os
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Jan 8, 2025
1 parent 24778ac commit f950f7c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test_ape_version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,18 @@ concurrency:
jobs:
run-this-action:
name: Run action (${{ matrix.version }})
runs-on: [ubuntu-latest]
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
version:
[
'default',
'0.8.10',
'==0.8.10',
'git+https://github.com/ApeWorX/ape.git@main',
]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test_plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,17 @@ concurrency:
jobs:
run-this-action:
name: Run action (${{ matrix.plugins }})
runs-on: [ubuntu-latest]
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
plugins: [
'default_with_version_config',
'default_without_version_in_config',
'tokens',
'tokens==0.8.0'
]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit f950f7c

Please sign in to comment.