Skip to content

Commit

Permalink
basic ci
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-leclercq committed Feb 8, 2024
1 parent ac7e113 commit 9d5a800
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: build-and-test

on:
push:
branches: [main]
pull_request:
branches: [main]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: test
run: cargo test
- name: build
run: cargo build --release

0 comments on commit 9d5a800

Please sign in to comment.