File tree 2 files changed +36
-0
lines changed 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This is a basic workflow to help you get started with Actions
2
+ name : CI
3
+
4
+ # Controls when the workflow will run
5
+ on :
6
+ # Triggers the workflow on push or pull request events but only for the main branch
7
+ push :
8
+ branches : [main]
9
+ paths-ignore :
10
+ - ' **/README.md'
11
+ pull_request :
12
+ branches : [main]
13
+
14
+ # Allows you to run this workflow manually from the Actions tab
15
+ workflow_dispatch :
16
+
17
+ jobs :
18
+ test :
19
+ name : Test on ${{ matrix.os }}
20
+ runs-on : ${{ matrix.os }}
21
+ strategy :
22
+ matrix :
23
+ os : [ubuntu-latest, windows-latest, macos-latest]
24
+ steps :
25
+ - uses : actions/checkout@v2
26
+ - uses : actions/setup-java@v2
27
+ with :
28
+ distribution : ' zulu'
29
+ java-version : ' 11'
30
+ - uses : subosito/flutter-action@v1
31
+ with :
32
+ channel : ' stable'
33
+ - run : dart --version
34
+ - run : flutter --version
35
+ - run : flutter analyze
Original file line number Diff line number Diff line change 1
1
## Libadwaita ❤️ Flutter
2
2
3
+ ![ CI] ( https://github.com/gtk-flutter/libadwaita/actions/workflows/ci.yml/badge.svg )
3
4
[ ![ Pub.dev] ( https://img.shields.io/pub/v/libadwaita.svg )] ( https://pub.dev/packages/libadwaita )
4
5
[ ![ License] ( https://img.shields.io/github/license/gtk-flutter/libadwaita?color=indigo )] ( LICENSE )
5
6
[ ![ Maintainer] ( https://img.shields.io/badge/Maintainer-prateekmedia-informational )] ( https://github.com/prateekmedia )
You can’t perform that action at this time.
0 commit comments