We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c858c2 commit 015055cCopy full SHA for 015055c
2 files changed
.github/workflows/ci.yaml
@@ -0,0 +1,22 @@
1
+# Copyright (C) Nitrokey GmbH
2
+# SPDX-License-Identifier: CC0-1.0
3
+
4
+name: CI
5
6
+on:
7
+ pull_request:
8
+ push:
9
+ branches: [main]
10
+ workflow_dispatch:
11
12
13
+jobs:
14
+ build:
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - uses: actions/checkout@master
19
+ - name: Install rust
20
+ run: rustup show active-toolchain || rustup toolchain install
21
+ - name: Run checks
22
+ run: make lint
Makefile
@@ -28,7 +28,7 @@ lint:
28
cargo fmt --check
29
cargo check --all-features --all-targets
30
cargo clippy --all-targets --all-features -- -Dwarnings
31
- RUSTDOCFLAGS='-Dwarnings' cargo doc --all-features
+ RUSTDOCFLAGS='-Dwarnings' cargo doc --all-features --no-deps
32
33
.PHONY: tarpaulin
34
tarpaulin:
0 commit comments