Skip to content

Commit

Permalink
Don't run old tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
tjarvstrand committed Jul 18, 2024
1 parent 0ff9750 commit 5274ac8
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
# This is a basic workflow to help you get started with Actions
name: Test

name: CI

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
branches:
- main
- ci-*
pull_request:
branches: [ master ]

jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os:
- ubuntu-latest
- macos-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
Expand All @@ -31,8 +30,6 @@ jobs:
- run: flutter test
- run: flutter test
working-directory: example
- run: flutter build appbundle --target-platform android-arm,android-arm64,android-x64
working-directory: example

integration-test-windows:
name: 'Integration Test on windows-latest'
Expand Down

0 comments on commit 5274ac8

Please sign in to comment.