refactor: fha calculations #488
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
# This is a dummy workflow that will run when the conditions of the | |
# do-test-suite workflow aren't met. This allows PRs to be merged when the | |
# conditions aren't met for a protected branch. See | |
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks | |
name: Execute RAMSTK Test Suite with Coverage | |
on: | |
push: | |
branches: | |
- '!master' | |
- '!dependabot/**' | |
- 'release/**' | |
- 'chore/**' | |
- "docs/**" | |
tags-ignore: | |
- "*" | |
pull_request: | |
paths: | |
- "**.py" | |
types: | |
- "opened" | |
- "reopened" | |
- "synchronize" | |
jobs: | |
ubuntu: | |
name: Run Dummy Test Suite on Linux | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: [ 3.8, 3.9, '3.10' ] | |
steps: | |
- name: Set up Python ${{ matrix.python }} | |
id: setpy | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- run: | | |
echo "Test suite not required for ${{ matrix.python }}." | |
upload_coveralls: | |
name: Upload Dummy Results to Coveralls | |
needs: ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo "No test suite required; no coverage report generated." |