Skip to content

Adds a basic CI pipeline for this project #1

Adds a basic CI pipeline for this project

Adds a basic CI pipeline for this project #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLORS: always
jobs:
build_and_test:
name: Rust
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose --release
- name: Test
run: cargo test --verbose