Skip to content

ci: Run htcondor in docker container #58

ci: Run htcondor in docker container

ci: Run htcondor in docker container #58

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
env:
PYTHON_VERSION: 3.11
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install poetry
run: pip install poetry
- name: Determine dependencies
run: poetry lock
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: poetry
- name: Install Dependencies using Poetry
run: poetry install
- name: Check formatting
run: poetry run black --check .
linting:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install poetry
run: pip install poetry
- name: Determine dependencies
run: poetry lock
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: poetry
- name: Install Dependencies using Poetry
run: poetry install
- name: Check code
run: poetry run flake8
testing:
runs-on: ubuntu-latest
container:
image: htcondor/mini
steps:
- name: Install Python and more yum
run: |
yum install -y python${{ env.PYTHON_VERSION }}
yum install -y python${{ env.PYTHON_VERSION }}-pip
yum install -y python${{ env.PYTHON_VERSION }}-devel
yum install -y gcc
- name: Test submtiuser
run: |
whoami
pwd
ls -lah
ls -lah /home/submituser
- name: HTCondor master
run: condor_master
- name: Test path
run: |
ls /
ls /github
ls /github/workflow
- name: Test HTCondor
run: condor_submit /github/workflow/sleep.sub
- uses: actions/checkout@v3
- name: Install poetry
run: |
pip${{ env.PYTHON_VERSION }} install poetry
- name: Determine dependencies
run: poetry lock
- name: Install dependencies
run: poetry install
- name: Run pytest
run: poetry run coverage run -m pytest tests/tests.py
- name: Run Coverage
run: poetry run coverage report -m