Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,8 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: "3.6"
- name: Install dependencies
run: ./metadata-ingestion/scripts/install_deps.sh
- name: Gradle build (and test)
run: ./gradlew build
run: ./gradlew build -x :metadata-ingestion:build -x :metadata-ingestion:check -x docs-website:build
- name: Ensure codegen is updated
run: |
if output=$(git status --porcelain) && [ ! -z "$output" ]; then
Expand Down Expand Up @@ -59,7 +57,7 @@ jobs:
- name: Install dependencies
run: ./metadata-ingestion/scripts/install_deps.sh
- name: Run metadata-ingestion tests
run: ./gradlew :metadata-ingestion:testFull -x :metadata-ingestion:codegen
run: ./gradlew :metadata-ingestion:build :metadata-ingestion:check :metadata-ingestion:testFull

smoke-test:
runs-on: ubuntu-latest
Expand Down