Skip to content

ci(deps): bump actions/upload-artifact from 3 to 4 #403

ci(deps): bump actions/upload-artifact from 3 to 4

ci(deps): bump actions/upload-artifact from 3 to 4 #403

Workflow file for this run

name: Unit-Tests
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
test:
# Prevent circular workflow run
if: "!contains(github.event.pusher.name, 'emnify-gha')"
name: Run Unit-Tests
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v4
- name: Install dependencies
run: pip install -r req.txt
- name: Run tests
run: pytest --cov=. --cov-report=xml
- name: Export SonarCloud Result
# Skip dependabot runs because they don't have access to secrets
if: "!contains(github.ref, 'dependabot')"
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Archive code coverage results
uses: actions/upload-artifact@v4
with:
name: sdk-coverage-result
path: coverage.xml