Skip to content

update-checkout-action #2

update-checkout-action

update-checkout-action #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
windows:
runs-on: windows-2022
steps:
- name: Check out source and ADLX
uses: actions/checkout@v5
with:
submodules: recursive
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check formatting
run: cargo fmt --all -- --check
- name: Run tests
run: cargo test --lib
- name: Check all targets
run: cargo check --all-targets
- name: Build release executable
run: cargo build --release