Bump jf-relation from 9d4073a
to fd2bcfc
(#2227)
#313
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: Build, Lint, and Test (self-hosted) | |
on: | |
push: | |
branches: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
matrix: | |
just_variants: | |
- async_std | |
#- tokio | |
runs-on: [self-hosted] | |
steps: | |
- uses: dtolnay/rust-toolchain@stable | |
name: Install Current Rust | |
with: | |
components: "clippy, rustfmt" | |
- uses: actions/checkout@v4 | |
name: Checkout Repository | |
- uses: Swatinem/rust-cache@v2 | |
name: Enable Rust Caching | |
with: | |
prefix-key: ${{ matrix.just_variants }} | |
- name: Run linting | |
run: | | |
just ${{ matrix.just_variants }} lint | |
- name: Build all crates in workspace | |
run: just ${{ matrix.just_variants }} build | |
- name: Unit and integration tests for all crates in workspace | |
run: | | |
just ${{ matrix.just_variants }} test | |
timeout-minutes: 60 | |
env: | |
RUST_BACKTRACE: full |