bump (#146) #335
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
# Test package every time | |
name: Test package | |
# Controls when the action will run. | |
# Trigger this code when a new release is published | |
on: | |
workflow_dispatch: | |
release: | |
types: [created] | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Write utilix config | |
run: | | |
bash .github/scripts/create-utilix-config.sh | |
cp ~/.xenon_config ./ | |
env: | |
RUNDB_API_URL: ${{ secrets.RUNDB_API_URL }} | |
RUNDB_API_USER: ${{ secrets.RUNDB_API_USER }} | |
RUNDB_API_PASSWORD: ${{ secrets.RUNDB_API_PASSWORD }} | |
XENT_URL: ${{ secrets.MONGO_URL }} | |
XENT_USER: ${{ secrets.MONGO_USER }} | |
XENT_PASSWORD: ${{ secrets.MONGO_PASSWORD }} | |
XENT_DATABASE: ${{ secrets.MONGO_DATABASE }} | |
- name: Checkout cutax | |
uses: actions/checkout@v3 | |
with: | |
repository: XENONnT/cutax | |
ssh-key: ${{ secrets.CUTAX_DEPLOY_KEY }} | |
path: cutax | |
ref: master | |
fetch-depth: 0 | |
- name: Install python dependencies | |
uses: py-actions/py-dependency-install@v2 | |
- name: Install requirements | |
run: | | |
pip install -r extra_requirements/requirements-tests.txt | |
pip install ./cutax | |
- name: Install saltax | |
run: python setup.py develop | |
- name: Install pytest and hypothesis | |
run: pip install pytest hypothesis pytest-cov coverage | |
- name: Test package | |
env: | |
HAVE_ACCESS_TO_SECTETS: ${{ secrets.RUNDB_API_URL }} | |
if: env.HAVE_ACCESS_TO_SECTETS != null | |
run: pytest --cov=saltax --cov-report=xml | |
- name: Test coverage scan | |
env: | |
HAVE_ACCESS_TO_SECTETS: ${{ secrets.RUNDB_API_URL }} | |
if: env.HAVE_ACCESS_TO_SECTETS != null | |
run: coverage run --source saltax setup.py test | |
- name: Coverage report | |
env: | |
HAVE_ACCESS_TO_SECTETS: ${{ secrets.RUNDB_API_URL }} | |
if: env.HAVE_ACCESS_TO_SECTETS != null | |
run: coverage report | |
- name: goodbye | |
run: echo goodbye |