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.
2 parents d80921d + 5884429 commit 9a626d5Copy full SHA for 9a626d5
.circleci/config.yml
.github/workflows/test.yml
@@ -8,21 +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 Test Reports
- uses: actions/upload-artifact@v1
20
- with:
21
- name: redux-kotlin_test_reports
22
- path: redux-kotlin/build/reports/tests
23
24
- - name: Archive redux-kotlin-threadsafe Test Reports
25
26
27
- name: redux-kotlin-thunk_test_reports
28
- path: redux-kotlin-thunk/build/reports/tests
+ run: ./gradlew build
0 commit comments