-
Notifications
You must be signed in to change notification settings - Fork 5
49 lines (41 loc) · 1.15 KB
/
gui-tests.yml
File metadata and controls
49 lines (41 loc) · 1.15 KB
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
name: GUI Tests
on:
push:
branches: [ "master", "stable" ]
paths:
- 'rim_gui/**'
pull_request:
branches: [ "master", "stable" ]
paths:
- 'rim_gui/**'
concurrency:
group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}"
cancel-in-progress: true
jobs:
gui-tests:
strategy:
fail-fast: false
matrix:
include:
- platform: 'ubuntu-22.04'
args: ''
- platform: 'windows-latest'
args: ''
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
run: bash ci/scripts/install-tauri-deps.sh
- name: run clippy
run: cargo clippy --no-deps -p rim-gui -- -D warnings
- name: run tests
run: cargo test -p rim-gui --verbose