Skip to content

Bump black from 21.9b0 to 24.3.0 #36

Bump black from 21.9b0 to 24.3.0

Bump black from 21.9b0 to 24.3.0 #36

Workflow file for this run

name: docker-centos7-slurm
on:
push:
branches:
- main
pull_request: {}
jobs:
Build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version:
- "3.9"
fail-fast: false
steps:
- name: Checkout repository code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version}}
- name: Install Dependencies
run: |
python${{ matrix.python-version }} -m pip install --upgrade pip
python${{ matrix.python-version }} -m pip install pipenv
pipenv --python ${{ matrix.python-version }} install --dev --skip-lock
- name: Run Tests
run: |
pipenv run pytest -sv