We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 300043e commit 790a50aCopy full SHA for 790a50a
.github/workflows/test-cc.yml
@@ -0,0 +1,26 @@
1
+name: Scala 3 with Capture Checking
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
+ paths:
9
+ - .github/workflows/test-cc.yml
10
+ - scala2-library-cc/**
11
+ - scala2-library-cc-tasty/**
12
+ - compiler/src/dotty/tools/dotc/cc/**
13
14
+env:
15
+ DOTTY_CI_RUN: true
16
+ DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
17
18
+jobs:
19
+ suite-with-stdlib-cc:
20
+ name: Test Suite with the CC Standard Library
21
+ runs-on: ubuntu-latest
22
+ steps:
23
+ - name: Git Checkout
24
+ uses: actions/checkout@v4
25
+ - name: Test with Scala 2 library with CC TASTy
26
+ run: ./project/scripts/sbt ";set ThisBuild/Build.scala2Library := Build.Scala2LibraryCCTasty ;scala3-bootstrapped/test"
0 commit comments