diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 725d4c1..a32efa2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,6 +10,7 @@ on: jobs: build-and-publish: name: Build and publish miqsel distributions to PyPI + if: startsWith(github.event.ref, 'refs/tags') runs-on: ubuntu-latest steps: - name: Checkout to master @@ -18,7 +19,7 @@ jobs: - name: Setup python uses: actions/setup-python@v1 with: - python-version: '3.7' + python-version: '3.8' architecture: 'x64' - name: Build Package diff --git a/.github/workflows/unit_checks.yml b/.github/workflows/unit_checks.yml index 3fd4ff2..bb21244 100644 --- a/.github/workflows/unit_checks.yml +++ b/.github/workflows/unit_checks.yml @@ -1,6 +1,11 @@ -name: miqsel +name: 🕵️ Test suite -on: push +on: + push: + pull_request: + schedule: + # Run every Friday at 23:59 UTC + - cron: 59 23 * * 5 jobs: pre-commit: @@ -13,7 +18,7 @@ jobs: - name: Setup python uses: actions/setup-python@v1 with: - python-version: '3.7' + python-version: '3.8' architecture: 'x64' - name: Pre-Commit Checks @@ -26,12 +31,12 @@ jobs: run: git diff tests: - name: Python-${{ matrix.python-version }} + name: 🐍 Python-${{ matrix.python-version }} needs: pre-commit runs-on: ubuntu-latest strategy: matrix: - python-version: [ '3.6', '3.7' ] + python-version: [ '3.6', '3.7', '3.8' ] steps: - name: Checkout to master uses: actions/checkout@master diff --git a/README.md b/README.md index 3ab9af3..43d50d0 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@

Python Versions -Build Status +Build Status License: GPLV3