2023-04-14 17:51:59 +00:00
|
|
|
name: Linux
|
2023-01-29 01:57:12 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Cache
|
|
|
|
uses: actions/cache@v3.2.3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
target
|
2023-04-14 17:51:59 +00:00
|
|
|
key: linux
|
2023-01-29 01:57:12 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install -y libgtk-3-dev
|
|
|
|
- name: Build
|
|
|
|
run: cargo build
|
2023-04-14 17:51:59 +00:00
|
|
|
- name: Test
|
|
|
|
run: cargo test
|