Skip to content

Scaffold allow running without token #1

Scaffold allow running without token

Scaffold allow running without token #1

Workflow file for this run

name: bin
on:
workflow_dispatch:
push:
paths:
- "scaffold/**"
- "Cargo.toml"
env:
CRATE: scaffold
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build -p ${{ env.CRATE }}
- name: Test
run: cargo test -p ${{ env.CRATE }}