-
Notifications
You must be signed in to change notification settings - Fork 3
100 lines (97 loc) · 3.28 KB
/
validate.yml
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: Validate PR
on:
workflow_call:
pull_request:
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
# 40 MiB stack
RUST_MIN_STACK: 40971520
RUST_LOG: "citadel=warn"
jobs:
fmt:
name: Cargo Fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Avarok-Cybersecurity/gh-actions-deps@master
- run: cargo fmt --check
clippy:
name: Cargo Clippy
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: Avarok-Cybersecurity/gh-actions-deps@master
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: install dependencies (ubuntu only)
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
- name: install frontend dependencies
run: yarn install # change this to npm or pnpm depending on which one you use
- run: cargo clippy --all -- -D warnings
test:
name: Cargo Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: Avarok-Cybersecurity/gh-actions-deps@master
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
- name: install frontend dependencies
run: yarn install # change this to npm or pnpm depending on which one you use
- run: cargo test
tauri-build:
name: Tauri Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-20.04, macos-latest, windows-latest ]
steps:
- uses: actions/checkout@v2
- uses: Avarok-Cybersecurity/gh-actions-deps@master
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20
- uses: oven-sh/setup-bun@v1
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
- run: cargo install create-tauri-app
- run: cargo install tauri-cli --version 2.0.0-alpha.21
- run: bun install
- run: cargo tauri build
eslint:
name: eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install node v20
uses: actions/setup-node@v1
with:
node-version: 20
- name: yarn install
run: yarn install
- name: eslint
uses: icrawl/action-eslint@v1
with:
custom-glob: '**/*.{js,ts,tsx}'