[omevv compliance info]: Fetch the firmware compliance info of a clu… #83
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: 'Build coverage report' | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- collections | |
schedule: | |
- cron: '0 6 * * *' | |
jobs: | |
# Unit tests with coverage | |
unit: | |
name: Unit Tests to generate coverage report | |
runs-on: ubuntu-latest | |
steps: | |
- name: Perform unit testing with ansible-test and generate coverage report | |
uses: ansible-community/ansible-test-gh-action@release/v1 | |
with: | |
testing-type: units | |
coverage: 'always' | |
ansible-core-version: 'stable-2.17' | |
target-python-version: '3.11' | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |