From 01e66350328a12c049bc7799cc28723377330b3d Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Wed, 31 Mar 2021 13:06:22 +1100 Subject: [PATCH] Add workflow for code coverage --- .github/workflows/coverage.yaml | 39 +++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/coverage.yaml diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml new file mode 100644 index 0000000000..6ae8d1d6fd --- /dev/null +++ b/.github/workflows/coverage.yaml @@ -0,0 +1,39 @@ +# Perform CI checks, and calculate code coverage + +name: Code Coverage + +on: + push: + branches: [ $default-branch ] + pull_request: + branches: [ $default-branch ] + +jobs: + + # Run tests on SQLite database + # These tests are used for code coverage analysis + coverage: + runs-on: ubuntu-latest + env: + INVENTREE_DB_NAME: './test_db.sqlite' + INVENTREE_DB_ENGINE: sqlite3 + + steps: + - name: Checkout Code + uses: actions/checkout@v2 + - name: Setup Python + uses: actions/setup-python@v2 + with: + python-version: 3.7 + - name: Install Dependencies + run: | + sudo apt-get update + pip3 install invoke + invoke install + - name: Coverage Tests + run: | + invoke coverage + - name: Upload Coverage Report + uses: coverallsapp/github-action@master + with: + github-token: ${{ secrets.GITHUB_TOKEN }}