Skip to content

Commit

Permalink
add tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rvhonorato committed Jun 12, 2024
1 parent 899e481 commit 650f62a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: tests

on:
push:
branches: [main]

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: deploy
cancel-in-progress: false

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Build
run: cargo build --verbose

- name: Run tests
run: cargo test --verbose

0 comments on commit 650f62a

Please sign in to comment.