Skip to content

ci

ci #3

Workflow file for this run

name: Tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check and build
run: |
cargo check
cargo build --release
- name: Run tests
run: CI=1 cargo test