We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f36a50 commit 23f0977Copy full SHA for 23f0977
.github/workflows/rustfmt.yml
@@ -0,0 +1,13 @@
1
+name: Rustfmt
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - name: Run rustfmt
13
+ run: cargo fmt -- --check
.github/workflows/tests.yml
@@ -0,0 +1,15 @@
+name: Tests
+ - name: Build
+ run: cargo build --verbose
14
+ - name: Run tests
15
+ run: cargo test
0 commit comments