Skip to content

Commit

Permalink
ci/cd(github): add tests action;
Browse files Browse the repository at this point in the history
  • Loading branch information
5-pebbles committed Sep 6, 2024
1 parent 019b090 commit 0508ef6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: tests

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

env:
CARGO_TERM_COLOR: always

jobs:
app_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Tests
uses: actions-rs/cargo@v1
with:
command: test

0 comments on commit 0508ef6

Please sign in to comment.