1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# Sample YAML (.yml) — syntax highlighting demo. ci: steps: - name: build run: cargo build --release - name: test run: cargo test --all-features matrix: os: [macos, linux] rust: - stable - nightly env: RUST_LOG: debug CI: true