Add Github Actions Round 1 #43
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
name: KBase JobRunner tests | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
push: | |
# run workflow when merging to main or develop | |
branches: | |
- main | |
- master | |
- develop | |
- scanon/gha | |
jobs: | |
jobsrunner_tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9"] | |
steps: | |
- name: Install Docker | |
uses: docker-practice/actions-setup-docker@master | |
timeout-minutes: 12 | |
- name: Repo checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependecies | |
# tried VaultVulp/action-pipenv but pytest wasn't on the path post action | |
shell: bash | |
run: | | |
pip install -r requirements.txt | |
pip install -r requirements-dev.txt | |
make mock | |
docker pull kbase/runtester | |
docker tag kbase/runtester test/runtester | |
- name: Run tests | |
shell: bash | |
env: | |
KB_AUTH_TOKEN: ${{ secrets.KBASE_CI_TOKEN }} | |
KB_ADMIN_AUTH_TOKEN: ${{ secrets.KBASE_CI_TOKEN }} | |
run: make test | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
fail_ci_if_error: true |