Skip to content

Added reference to Yoshua's post in contributing docs. #7

Added reference to Yoshua's post in contributing docs.

Added reference to Yoshua's post in contributing docs. #7

Workflow file for this run

name: Build + Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Check
run: cargo check --verbose