Revert "Merging main to develop" #91
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: Coverage | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch Repository | |
uses: actions/checkout@v3 | |
- name: Setup environment | |
uses: ./.github/actions/setup_test_environment | |
- name: Create coverage report | |
run: poetry run python -m pytest --cov-report xml --cov elasticai.creator -m "not simulation" tests elasticai | |
- name: Publish coverage report | |
uses: orgoro/[email protected] | |
with: | |
coverageFile: coverage.xml | |
token: ${{ secrets.GITHUB_TOKEN }} |