Skip to content

CI

CI #189

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
schedule: [cron: "40 1 * * *"]
permissions:
contents: read
jobs:
install:
name: ${{matrix.os == 'ubuntu' && 'Linux' || matrix.os == 'macos' && 'macOS' || matrix.os == 'windows' && 'Windows' || '???'}}
runs-on: ${{matrix.os}}-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- name: test that dotslash is not preinstalled
run: |
if dotslash --version; then which dotslash; exit 1; fi
shell: bash
- name: install dotslash
uses: ./
- run: dotslash --version