Merge pull request #1023 from VisLab/clean-up #15
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: CI_COV | |
on: | |
push: | |
branches: ["*"] | |
pull_request: | |
branches: ["*"] | |
jobs: | |
check-secret: | |
runs-on: ubuntu-latest | |
outputs: | |
secrets-exist: ${{ steps.check-for-secrets.outputs.defined }} | |
steps: | |
- name: Check for Secret availability | |
id: check-for-secrets | |
# perform secret check & put boolean result as an output | |
shell: bash | |
run: | | |
if [ "${{ secrets.CC_TEST_REPORTER_ID }}" != '' ]; then | |
echo "defined=true" >> $GITHUB_OUTPUT; | |
else | |
echo "defined=false" >> $GITHUB_OUTPUT; | |
fi | |
build: | |
needs: check-secret | |
strategy: | |
matrix: | |
platform: [ubuntu-latest] | |
python-version: [ "3.9" ] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# Install dependencies | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade --upgrade-strategy eager pip | |
pip install flake8 coverage -r requirements.txt -r docs/requirements.txt | |
# Run flake8 | |
- name: Lint with flake8 | |
run: | | |
flake8 . --count --show-source --statistics --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
# Run unittest with coverage | |
- name: Test with unittest and coverage | |
env: | |
HED_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
continue-on-error: true | |
run: | | |
coverage run -m unittest discover tests | |
# Run spec tests with coverage | |
- name: Run spec_test coverage | |
env: | |
HED_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
coverage run --append -m unittest discover spec_tests | |
coverage xml | |
ls -la | |
# Upload coverage to Code Climate | |
- name: Upload coverage to Code Climate | |
if: needs.check-secret.outputs.secrets-exist == 'true' | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} |