-
Notifications
You must be signed in to change notification settings - Fork 5
65 lines (55 loc) · 1.58 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
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
pip freeze
make mock
docker pull kbase/runtester
docker tag kbase/runtester test/runtester
curl -q -L -o $HOME/cromwell-44.jar https://github.com/broadinstitute/cromwell/releases/download/44/cromwell-44.jar
touch ~/cromwell.conf
ulimit -a
- name: Run tests
shell: bash
env:
KB_AUTH_TOKEN: ${{ secrets.KBASE_CI_TOKEN }}
KB_ADMIN_AUTH_TOKEN: ${{ secrets.KBASE_CI_TOKEN }}
KB_BASE_URL: https://ci.kbase.us/services
run: make test
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v3
# with:
# fail_ci_if_error: true