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 c3d6c48 commit a887bbaCopy full SHA for a887bba
.github/workflows/test-cc.yml
@@ -0,0 +1,25 @@
1
+name: Scala 3 with Capture Checking Test Suite
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
+ paths:
9
+ - scala2-library-cc/**
10
+ - scala2-library-cc-tasty/**
11
+ - compiler/src/dotty/tools/dotc/cc/**
12
13
+env:
14
+ DOTTY_CI_RUN: true
15
+ DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
16
17
+jobs:
18
+ suite-with-stdlib-cc:
19
+ name: Scala 3 suite with the capture checked library
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - name: Git Checkout
23
+ uses: actions/checkout@v4
24
+ - name: Test with Scala 2 library with CC TASTy
25
+ run: ./project/scripts/sbt ";set ThisBuild/Build.scala2Library := Build.Scala2LibraryCCTasty ;scala3-bootstrapped/test"
0 commit comments