Skip to content

Add initial CI setup #6

Add initial CI setup

Add initial CI setup #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo build --workspace --verbose
- run: cargo test --workspace --verbose
msrv-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install 1.64
- run: cargo +1.64 build -p ribboncurls --verbose
- run: cargo +1.64 test -p ribboncurls --verbose