Ensure that libs can be used with the rc build variant #836
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_test: | |
strategy: | |
matrix: | |
os: [macos-12, ubuntu-22.04, windows-2022] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test --verbose | |
- name: Run poetry example | |
run: cargo run --example poetry -- -s crates/koto/examples/poetry/scripts/readme.koto | |
build_and_test_release: | |
# We don't need to test release builds on all platforms for now | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: [email protected] | |
- name: Test with optimizations | |
run: just test_release --verbose | |
build_and_test_rc: | |
# We don't need to test rc builds on all platforms for now | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: [email protected] | |
- name: Test the rc build variant | |
run: just test_rc --verbose | |
build_and_test_release_rc: | |
# We don't need to test rc builds on all platforms for now | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: [email protected] | |
- name: Test the rc build variant | |
run: just test_rc --release --verbose | |
code_checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt, clippy | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: [email protected],[email protected] | |
- name: Check formatting | |
run: just fmt | |
- name: Clippy | |
run: just clippy | |
- name: Docs | |
run: just doc | |
- name: Check links | |
run: just check_links | |
wasm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: wasm32-unknown-unknown | |
- uses: jetli/[email protected] | |
with: | |
version: v0.12.1 | |
- name: Run wasm example tests | |
run: cd crates/koto/examples/wasm && wasm-pack test --node |