We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 465a330 commit 2960cd3Copy full SHA for 2960cd3
.github/workflows/code-quality.yml
.github/workflows/pull-request.yml
@@ -1,13 +1,24 @@
1
name: CI - Pull Request
2
on:
3
pull_request_target:
4
- pull_request: #TODO: Remove this after testing
5
-
6
+
7
jobs:
8
code-quality:
9
- uses: ./.github/workflows/code-quality.yml
10
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ with:
11
+ repository: ${{github.event.pull_request.head.repo.full_name}}
12
+ ref: ${{ github.head_ref }}
13
+ fetch-depth: 0
14
+ - uses: subosito/flutter-action@v2
15
16
+ cache: true
17
+ - run: dart run build_runner build --delete-conflicting-outputs
18
+ - uses: ZebraDevs/[email protected]
19
20
+ token: ${{secrets.GITHUB_TOKEN}}
21
22
check-secret:
23
runs-on: ubuntu-latest
24
outputs:
0 commit comments