Skip to content

Prepare release 1.4.1-3 #117

Prepare release 1.4.1-3

Prepare release 1.4.1-3 #117

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8, 3.9]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Configure git
run: |
git config --global user.email "noreply@cern.ch"
git config --global user.name "Github actions"
- name: Test
run: |
python -m unittest -v