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 0e3e5a9 commit 7f606e4Copy full SHA for 7f606e4
.github/workflows/ci.yml
@@ -61,10 +61,14 @@ jobs:
61
with:
62
jvm: "temurin:17"
63
- name: Compile and test main projects
64
+ # Only running the tests in 2.12 for now. Many test fixtures need
65
+ # to be updated for 2.13.
66
run: |
67
.github/setup-test-projects.sh &&\
- ./mill -i 'backend[_].test' &&\
- ./mill -i 'frontend[_].test'
68
+ ./mill -i 'backend[_].test.compile' &&\
69
+ ./mill -i 'frontend[_].test.compile' &&\
70
+ ./mill -i 'backend[2.12.17].test' &&\
71
+ ./mill -i 'frontend[2.12.17].test'
72
shell: bash
73
74
release:
0 commit comments