Module

x/cliffy/.github/workflows/canary.yml

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
File
name: Canaryon: schedule: - cron: 0 3 * * *jobs: canary: name: Deno Canary runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [macOS-latest, windows-latest, ubuntu-latest] deno_version: [ canary ] env: RUST_BACKTRACE: full steps: - name: Setup repo uses: actions/checkout@v3
- name: Setup Deno uses: denoland/setup-deno@v1 with: deno-version: ${{ matrix.deno_version }}
- name: Run tests run: deno task test