Skip to content

ci(contributor): contrib-readme-action has updated readme (#66) #95

ci(contributor): contrib-readme-action has updated readme (#66)

ci(contributor): contrib-readme-action has updated readme (#66) #95

Workflow file for this run

name: Rust
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Update rust
run: rustup update
- name: Build
run: cargo build --verbose --features ci
- name: Run Tests
run: |
cargo test --verbose --features ci