-
Notifications
You must be signed in to change notification settings - Fork 4
77 lines (65 loc) · 1.57 KB
/
pull-develop.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: KOS-RS Checks
on:
push:
branches:
- develop
- master
paths-ignore:
- '**/*.md'
- '.gitignore'
- '.github/**'
pull_request:
branches:
- develop
- master
paths-ignore:
- '**/*.md'
- '.gitignore'
- '.github/**'
jobs:
format:
runs-on: ubuntu-latest
env:
USER: ${{ secrets.GIT_USER }}
TOKEN: ${{ secrets.GIT_PASS }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: RustUp
uses: klever-io/kos-rs/.github/actions/rustup@develop
with:
with_cache: true
- name: Lint
run: |
cargo fmt --all -- --check
cargo clippy -- -D warnings
- name: checks
run: |
cargo deny check
cargo pants
- name: Restore .env file
run: echo $NODES_ENV | base64 -d > packages/kos-sdk/.env.nodes
env:
NODES_ENV: ${{ secrets.NODES_ENV }}
- name: Run Tests
run: cargo test
build:
needs: [format]
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: RustUp
uses: klever-io/kos-rs/.github/actions/rustup@develop
with:
with_cache: true
- name: Restore .env file
run: echo $NODES_ENV | base64 -d > packages/kos-sdk/.env.nodes
env:
NODES_ENV: ${{ secrets.NODES_ENV }}
- name: Build
run: make webpack-npm