-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 888 Bytes
/
build.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
name: Build
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
env:
CARGO_TERM_COLOR: always
jobs:
ubuntu_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: sudo apt-get install -y libgtk-3-dev libsoup2.4-dev libjavascriptcoregtk-4.0-dev libwebkit2gtk-4.0-dev
- name: Build
run: cargo build
- name: Test
run: cargo test
windows_build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build
- name: Test
run: cargo test
macos_build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build
- name: Test
run: cargo test