Skip to content

Commit

Permalink
ci: add initial ci (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
markxoe authored Jun 3, 2024
1 parent e17fb55 commit ece8611
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build and test

on:
push:

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose

0 comments on commit ece8611

Please sign in to comment.