Skip to content

test: check if installed command is really executable #82

test: check if installed command is really executable

test: check if installed command is really executable #82

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
test:
name: "${{ matrix.config.target }}"
runs-on: "${{ matrix.config.os }}"
strategy:
fail-fast: false
matrix:
config:
- os: macos-12
target: x86_64-apple-darwin
- os: macos-latest
target: aarch64-apple-darwin
- os: windows-latest
target: x86_64-pc-windows-msvc
- os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: moonrepo/setup-toolchain@v0
env:
PROTO_LOG: debug
with:
auto-install: true
cache: false
- run: yarn install --immutable
- run: moon ci --color -c 1
- uses: appthrust/moon-ci-retrospect@v0
if: success() || failure()