Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
chore: Skip tests with success (DEV-1112) (#2188)
  • Loading branch information
irinaschubert committed Sep 6, 2022
1 parent 2fbf664 commit 82703d7
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
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

0 comments on commit 82703d7

Please sign in to comment.