Skip to content

Commit 91214da

Browse files
committed
Update git actions and add pre-commit config
1 parent f484228 commit 91214da

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

.github/workflows/prod.yaml

+15-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
CARGO_TERM_COLOR: always
1111

1212
jobs:
13-
build:
13+
build-app:
1414

1515
runs-on: ubuntu-latest
1616

@@ -30,4 +30,17 @@ jobs:
3030
- name: Build
3131
run: cd app && npm ci && trunk build
3232
- name: Test
33-
run: cd app && cargo test
33+
run: cd app && cargo test
34+
35+
build-codemafia:
36+
37+
runs-on: ubuntu-latest
38+
39+
steps:
40+
- uses: actions/checkout@v2
41+
- name: Build
42+
run: cd codemafia && cargo build --verbose
43+
- name: Test
44+
run: cd codemafia && cargo test --verbose
45+
46+

.pre-commit-config.yaml

+1-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
1-
files: ^codemafia/
21
repos:
3-
- repo: https://github.com/pre-commit/pre-commit-hooks
4-
rev: v3.3.0
5-
hooks:
6-
- id: check-byte-order-marker
7-
- id: check-case-conflict
8-
- id: check-merge-conflict
9-
- id: check-symlinks
10-
- id: check-yaml
11-
- id: end-of-file-fixer
12-
- id: mixed-line-ending
13-
- id: trailing-whitespace
142
- repo: https://github.com/doublify/pre-commit-rust
153
rev: master
164
hooks:
175
- id: fmt
186
- id: clippy
19-
- id: cargo-check
7+
- id: cargo-check

0 commit comments

Comments
 (0)