Make key
unique
#31
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
name: Selftest | |
on: pull_request | |
jobs: | |
alr-install: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
cached: [false, true] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Selftest | |
uses: ./ # Uses the action code from the PR itself | |
with: | |
crates: gprbuild | |
# This can be changed to a more lightweight crate (hello) | |
# once we can install indexed releases. | |
cache: ${{ matrix.cached }} | |
- name: Run check | |
shell: bash | |
run: | | |
which gprbuild | |
gprbuild --version |