13 lines
272 B
YAML
13 lines
272 B
YAML
name: tests
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
tests_self_hosted:
|
|
runs-on: [self-hosted, macos]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: subosito/flutter-action@v2
|
|
- run: flutter test
|
|
- run: flutter test -d macos integration_test/smoke_test.dart
|