Skip to content

Create dependabot.yml #255

Create dependabot.yml

Create dependabot.yml #255

Workflow file for this run

# .github/workflows/ci-cd.yml
---
on:
- push
env:
PYTHONUNBUFFERED: 1
jobs:
test:
strategy:
max-parallel: 2
matrix:
include:
- nomad: 1.8.0
python: 3.12
- nomad: 1.6.8
python: 3.7
name: Test
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
cache-dependency-path: ./requirements*.txt
- name: install editable package
run: pip install -e .
- name: install test requirements
run: pip install -r ./requirements-test.txt
- name: run pyright
uses: jakebailey/pyright-action@v2
- name: run unit tests
run: ./unit_tests.sh --durations=10 -n auto
- name: install cni
run: bash ./tests/provision.sh cni_install
- name: install nomad server
run: bash ./tests/provision.sh nomad_install ${{ matrix.nomad }}
- name: run nomad server
run: bash ./tests/provision.sh nomad_start
- name: run integration tests
run: ./integration_tests.sh --durations=10 --cov=nomad_tools -n 3
test_ssl:
name: Test ssl
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: upgrade pip
run: pip install --upgrade pip
- name: install editable package
run: pip install -e .
- name: install nomad server
run: bash ./tests/provision.sh nomad_install 1.8.0
- name: run nomad server tls
run: bash ./tests/provision.sh nomad_start_tls
- name: test tls connection
run: ./tests/tls_env.bash testall
pypi-publish:
name: Upload release to PyPI
needs:
- test
- test_ssl
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
#if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/nomad-tools
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: checkout
uses: actions/checkout@v4
- name: install build python package
run: pip install --upgrade build
- name: build the package
run: python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1