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 f0a2a85 commit 5884429Copy full SHA for 5884429
.circleci/config.yml
.github/workflows/test.yml
@@ -8,15 +8,13 @@ on:
8
9
jobs:
10
test:
11
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
12
+ strategy:
13
+ matrix:
14
+ os: [macos-latest, windows-latest, ubuntu-latest]
15
+
16
steps:
17
- uses: actions/checkout@v2
18
19
- name: Test
- run: ./gradlew jvmTest
-
- - name: Archive redux-kotlin-thunk Test Reports
- uses: actions/upload-artifact@v1
20
- with:
21
- name: redux-kotlin-thunk_test_reports
22
- path: redux-kotlin-thunk/build/reports/tests
+ run: ./gradlew build
0 commit comments