Skip to content

rename master to main and adjust ci.yml #16

rename master to main and adjust ci.yml

rename master to main and adjust ci.yml #16

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule: [ cron: "30 6 1 * *" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check
run: cargo check --all-features
- name: Clippy
run: cargo clippy --all-features
- name: Fmt
run: cargo fmt --check --quiet
- name: Build
run: cargo build --no-default-features --verbose
- name: Run tests
run: cargo test --no-default-features --verbose