Skip to content

Commit

Permalink
add github actions workflow for backend
Browse files Browse the repository at this point in the history
  • Loading branch information
sukobuto authored Aug 12, 2024
1 parent 149228a commit 228a08e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Rust

on:
push:
branches: [ "**" ]
paths:
- "backend/**"
- ".github/workflows/backend.yml"

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Run lint
run: cargo clippy --tests -- -D warnings
working-directory: ./backend
- name: Build
run: cargo build --verbose
working-directory: ./backend
- name: Run tests
run: cargo test --verbose
working-directory: ./backend

0 comments on commit 228a08e

Please sign in to comment.