run_tests.yml - icy_draw - [fork] icy_draw is the successor to mystic draw.
HTML git clone https://git.drkhsh.at/icy_draw.git
DIR Log
DIR Files
DIR Refs
DIR README
---
run_tests.yml (592B)
---
1 name: Run tests
2
3 on:
4 push:
5 branches: [ "master" ]
6 pull_request:
7 branches: [ "master" ]
8 env:
9 CARGO_TERM_COLOR: always
10 jobs:
11 run_checks:
12 runs-on: ubuntu-latest
13 steps:
14 - uses: actions/checkout@v4
15 - name: Check formatting
16 run: |
17 cargo fmt --all -- --check
18 - run: rustup component add clippy
19 - name: Install Dependencies
20 run: |
21 sudo apt-get update
22 sudo apt-get install build-essential libgtk-3-dev libasound2-dev libxcb-shape0-dev libxcb-xfixes0-dev
23 - name: Run tests
24 run: |
25