Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Skip tests with Success (DEV-1112) #2188

Merged
merged 27 commits into from Sep 6, 2022
36 changes: 36 additions & 0 deletions .github/workflows/build-and-test-empty.yml
@@ -0,0 +1,36 @@
name: CI

on:
push:
branches:
- main
- 'release-*'

jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Skip with success
run: echo "skipped"

test-client-test-data:
name: Test client-test-data
runs-on: ubuntu-latest
steps:
- name: Skip with success
run: echo "skipped"

test-repository-upgrade:
name: Test repository upgrade
runs-on: ubuntu-latest
steps:
- name: Skip with success
run: echo "skipped"

test-docs-build:
name: Test docs
runs-on: ubuntu-latest
steps:
- name: Skip with success
run: echo "skipped"
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: ./target/scala-2.13/coverage-report/cobertura.xml
- name: Upload coverage data to codecov
- name: Upload coverage data to codecov
uses: codecov/codecov-action@v3
with:
files: ./target/scala-2.13/coverage-report/cobertura.xml
Expand Down