Skip to content

Commit 8825739

Browse files
authored
Merge pull request #2 from cloneable/b0.1
B0.1
2 parents 09b9c1d + 49f1d5c commit 8825739

10 files changed

Lines changed: 873 additions & 148 deletions

File tree

.github/workflows/push.yaml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Push
2+
3+
on: [push]
4+
5+
jobs:
6+
test:
7+
name: Test
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Check out repository
11+
uses: actions/checkout@v1
12+
with:
13+
persist-credentials: false
14+
15+
- name: Install toolchain
16+
uses: actions-rs/toolchain@v1
17+
with:
18+
profile: minimal
19+
toolchain: stable
20+
components: clippy, rustfmt
21+
22+
- name: cargo fmt
23+
run: cargo fmt --all -- --check
24+
shell: bash
25+
26+
- name: cargo clippy
27+
run: cargo clippy -- -D clippy::all
28+
shell: bash
29+
30+
- name: cargo build
31+
run: cargo build
32+
shell: bash
33+
34+
- name: cargo test
35+
run: cargo test -- --nocapture
36+
shell: bash
37+
38+
- name: cargo package
39+
run: cargo package
40+
shell: bash

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.*
22
!/.*ignore
3+
!/.github
34

45
/target/

0 commit comments

Comments
 (0)