Feature/fix to use correct syntax #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration Tests | ||
on: | ||
pull_request: | ||
jobs: | ||
determine-branch: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
branch: ${{ steps.get-branch.outputs.branch }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
- name: Get current branch | ||
id: get-branch | ||
run: echo "::set-output name=branch::$(git rev-parse --abbrev-ref HEAD)" | ||
run-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Execute unit tests | ||
run: | | ||
pytest --cov=src --cov-report html tests/ | ||
- name: Test 1 - Filename Inspector Default | ||
id: test_1 | ||
uses: AbsaOSS/filename-inspector@${{ needs.determine-branch.outputs.branch }} | ||
Check failure on line 32 in .github/workflows/integration_tests.yml
|
||
with: | ||
name-patterns: '*UnitTest.*,*IntegrationTest.*' | ||
paths: '**/src/test/java/**,**/src/test/scala/**' |