Skip to content

Bump DavidAnson/markdownlint-cli2-action from 16 to 17 (#14) #56

Bump DavidAnson/markdownlint-cli2-action from 16 to 17 (#14)

Bump DavidAnson/markdownlint-cli2-action from 16 to 17 (#14) #56

Workflow file for this run

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