Skip to content

added tests where symbol is used as a part of computation #62

added tests where symbol is used as a part of computation

added tests where symbol is used as a part of computation #62

name: CI
on:
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
compile:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Java JDK 8
uses: actions/setup-java@v4.2.1
with:
java-version: '8'
distribution: 'temurin'
cache: 'sbt'
- name: Compile
run: sbt compile
test:
needs: compile
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Java JDK 8
uses: actions/setup-java@v4.2.1
with:
java-version: '8'
distribution: 'temurin'
cache: 'sbt'
- name: Test
run: |
sbt "testOnly *CodegenTest"
sbt "test-no-codegen"