Skip to content

Use EISOP CF sources #149

Use EISOP CF sources

Use EISOP CF sources #149

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Build and Test
uses: gradle/gradle-build-action@v2
with:
arguments: build conformanceTests
env:
SHALLOW: 1
- name: Check out jspecify/samples-google-prototype
if: always()
run: git -C ../jspecify checkout samples-google-prototype
if: always()

Check failure on line 26 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Continuous Integration

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 26, Col: 9): 'if' is already defined .github/workflows/build.yml (Line: 32, Col: 9): 'if' is already defined
- name: Run Samples Tests
if: always()
uses: gradle/gradle-build-action@v2
with:
arguments: jspecifySamplesTest
if: always()