Simplify addition to path step #110
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Changes to the v2 branch must be proposed via PRs in the branch | |
# v2-next. This way we can check the action just as GHA is going to | |
# use it. | |
name: Selftest | |
on: | |
pull_request: | |
# branches: | |
# - disabled | |
jobs: | |
setup-alire: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-12, macos-14, windows-latest] | |
target: [stable, nightly, source] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup stable | |
uses: ./ # This uses the action code in the current PR | |
if: matrix.target == 'stable' | |
with: | |
cache: false | |
# We test without cache, as caching is tested in a separate workflow. | |
# This way we make sure the cache isn't hiding any issue. | |
- name: Setup nightly | |
uses: ./ | |
if: matrix.target == 'nightly' | |
with: | |
version: nightly | |
cache: false | |
- name: Setup from source (master) | |
uses: ./ | |
if: matrix.target == 'source' | |
with: | |
branch: master | |
cache: false | |
# Verify proper builds | |
- run: alr -n version | grep "os:" | grep LINUX | |
if: matrix.os == 'ubuntu-latest' | |
shell: bash | |
- run: alr -n version | grep "os:" | grep MACOS | |
if: matrix.os == 'macos-latest' | |
shell: bash | |
- run: alr -n version | grep "os:" | grep WINDOWS | |
if: matrix.os == 'windows-latest' | |
shell: bash |