Skip to content

Add flat YAML package loading and tilde expansion in env values #4

Add flat YAML package loading and tilde expansion in env values

Add flat YAML package loading and tilde expansion in env values #4

Workflow file for this run

name: CI
on:
push:
branches: [main, staging]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Format check
run: cargo fmt --all -- --check
continue-on-error: true
- name: Clippy
run: cargo clippy -- -D warnings
continue-on-error: true
- name: Build
run: cargo build --release
- name: Test
run: cargo test