Bump DavidAnson/markdownlint-cli2-action from 16 to 17 (#14) #56
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: Run experiment | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
debug: | |
description: Interact via tmate | |
required: true | |
default: false | |
type: boolean | |
jobs: | |
main: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
include: | |
- os: ubuntu-latest | |
os-short: Ubuntu | |
- os: macos-latest | |
os-short: macOS | |
continue-on-error: true | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Run experiment on ${{ matrix.os-short }} | |
run: ./run-experiment | |
# FIXME: Build the name in a better way. | |
- name: Interact with ${{ matrix.os-short }} via tmate (workflow_dispatch only) | |
if: (success() || failure()) && github.event_name == 'workflow_dispatch' && inputs.debug | |
uses: mxschmitt/action-tmate@v3 | |
with: | |
limit-access-to-actor: true |