Skip to content

Commit

Permalink
ci: setup server ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Jtplouffe committed Oct 15, 2023
1 parent ff40564 commit a4cb48d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/server.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Server checks

on:
push:
branches:
- main

jobs:
server-checks:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./server
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Format
run: cargo fmt
- name: Clippy
run: cargo clippy

0 comments on commit a4cb48d

Please sign in to comment.