-
Notifications
You must be signed in to change notification settings - Fork 42
54 lines (51 loc) · 1.28 KB
/
main.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
name: Test on Push
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test_Ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: dependencies
run: |
sudo apt-get update
sudo apt-get install -y libclang-dev libgtk-3-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev
- name: Test
run: |
cargo test
cargo test --features flatpak
test_Windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Rust Cache
id: rust_cache
uses: Swatinem/rust-cache@v2
- name: Test
run: cargo test
# test_Macos:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v3
# - name: Install latest stable
# uses: actions-rs/toolchain@v1
# with:
# toolchain: stable
# - name: Rust Cache
# id: rust_cache
# uses: Swatinem/rust-cache@v2
# - name: Test
# run: cargo test