forked from aws-amplify/amplify-flutter
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (34 loc) · 863 Bytes
/
smithy.yaml
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
# Generated with aft. To update, run: `aft generate workflows`
name: smithy
on:
push:
branches:
- main
- stable
- next
pull_request:
paths:
- 'packages/smithy/smithy/**/*.dart'
- 'packages/smithy/smithy/**/*.yaml'
- 'packages/smithy/smithy/lib/**/*'
- 'packages/smithy/smithy/test/**/*'
- '.github/workflows/dart_vm.yaml'
- '.github/workflows/dart_native.yaml'
- '.github/workflows/smithy.yaml'
schedule:
- cron: "0 0 * * 0" # Every Sunday at 00:00
defaults:
run:
shell: bash
permissions: read-all
jobs:
test:
uses: ./.github/workflows/dart_vm.yaml
with:
working-directory: packages/smithy/smithy
native_test:
needs: test
uses: ./.github/workflows/dart_native.yaml
with:
working-directory: packages/smithy/smithy
skip-on-windows: false