Skip to content

Move to workflows folder #1

Move to workflows folder

Move to workflows folder #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
test:
runs-on: kuberunner
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
- name: Build
run: cargo build --all-targets
- name: Test
run: cargo test