Skip to content

ci: Run htcondor in docker container #53

ci: Run htcondor in docker container

ci: Run htcondor in docker container #53

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: |
su "whoami" submituser
su "pwd" submituser
su "ls -lah" submituser
su "ls -lah /home/submituser" submituser
- name: HTCondor master
run: condor_master
- name: Test HTCondor
run: su "condor_q" submituser
- uses: actions/checkout@v3
- name: Install poetry
run: |
su "pip${{ env.PYTHON_VERSION }} install poetry" submituser
su "export PATH=$PATH:/home/submituser/.local/bin" submituser
- name: Test PATH
run: |
su "echo $PATH" submituser
echo $PATH
ls -lah /home/submituser/.local/bin
- name: Determine dependencies
run: su "poetry lock" submituser
- name: Install dependencies
run: su "poetry install" submituser
- name: Run pytest
run: su "poetry run coverage run -m pytest tests/tests.py" submituser
- name: Run Coverage
run: su "poetry run coverage report -m" submituser