forked from saber-notes/saber
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (38 loc) · 1.23 KB
/
onyxsdk_pen_tests.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
name: Run onyxsdk_pen tests
on:
workflow_dispatch:
pull_request:
paths:
- 'packages/onyxsdk_pen/**'
- .github/workflows/onyxsdk_pen_tests.yml
push:
paths:
- 'packages/onyxsdk_pen/**'
- .github/workflows/onyxsdk_pen_tests.yml
jobs:
run-onyx-tests:
name: Run Flutter tests
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install apt dependencies
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libgtk-3-dev libx11-dev pkg-config cmake ninja-build libblkid-dev libsecret-1-dev libjsoncpp-dev ghostscript libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libunwind-dev webkit2gtk-4.1-dev
version: 1.0
execute_install_scripts: true
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
cache-key: 'flutter-:os:-:channel:-:version:-:arch:'
- name: Run tests
working-directory: packages/onyxsdk_pen
run: flutter test
- name: Lints
uses: invertase/github-action-dart-analyzer@v3
with:
working-directory: packages/onyxsdk_pen