Skip to content

fix: fix release publishing #35

fix: fix release publishing

fix: fix release publishing #35

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
defaults:
run:
shell: bash -leo pipefail {0} {0}
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install poetry
run: pip install poetry
- name: Determine dependencies
run: poetry lock
- uses: actions/setup-python@v4
with:
python-version: "3.12"
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: "3.12"
- name: Install poetry
run: pip install poetry
- name: Determine dependencies
run: poetry lock
- uses: actions/setup-python@v4
with:
python-version: "3.12"
cache: poetry
- name: Install Dependencies using Poetry
run: poetry install
- name: Check code
run: poetry run flake8
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install poetry
run: pip install poetry
- name: Determine dependencies
run: poetry lock
- uses: actions/setup-python@v4
with:
python-version: "3.12"
cache: poetry
- name: Install dependencies
run: poetry install
- name: Setup XrootD
#uses: JarvusInnovations/background-action@v1
#with:
run: |
"${SHELL}" <(curl -L micro.mamba.pm/install.sh)
eval "$(micromamba shell hook --shell bash)"
micromamba create -n xrootd -c conda-forge xrootd
micromamba activate xrootd
xrootd -p 32294 &
sleep 10
micromamba deactivate
- name: Run pytest
run: poetry run coverage run -m pytest tests/tests.py -v
- name: Run Coverage
run: poetry run coverage report -m