Skip to content

Made the function passed to const_fn! usable as normal function #300

Made the function passed to const_fn! usable as normal function

Made the function passed to const_fn! usable as normal function #300

Workflow file for this run

name: Build & Test for Linux
on:
push:
paths-ignore:
- "*.md"
pull_request:
jobs:
build_rs:
name: Build & Tests on linux
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"
# When rustup is updated, it tries to replace its binary, which on Windows is somehow locked.
# This can result in the CI failure, see: https://github.com/rust-lang/rustup/issues/3029
- run: |
rustup set auto-self-update disable
rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- name: Build rorm with tokio
run: cargo build -p rorm -F tokio
- name: Build rorm with async-std
run: cargo build -p rorm -F async-std
- name: Run cargo test
run: cargo test --all
- name: Install additional dependencies
run: |
rustup component add clippy
cargo install clippy-sarif sarif-fmt cargo-deny
- name: Run cargo deny check
run: cargo deny check --hide-inclusion-graph
- name: Run rust-clippy
run: cargo clippy --workspace --message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
continue-on-error: true
- name: Upload clippy analysis results to GitHub
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: rust-clippy-results.sarif
wait-for-processing: true