fix(ci): update ci

This commit is contained in:
SolidStateDrive 2025-02-01 16:14:42 +01:00 committed by GitHub Enterprise
commit 6f8bf995a5

24
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: Build
on:
push:
branches: "main"
pull_request:
branches: "main"
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose