Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Qazalin committed Jun 11, 2024
1 parent f517e9d commit 6ebd5b8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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

0 comments on commit 6ebd5b8

Please sign in to comment.