Skip to content

removed pprint import from distgfs; remove py3.8 and py3.9 from githu… #21

removed pprint import from distgfs; remove py3.8 and py3.9 from githu…

removed pprint import from distgfs; remove py3.8 and py3.9 from githu… #21

Workflow file for this run

# .github/workflows/build.yaml
name: distgfs CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt update -y && sudo apt upgrade
sudo apt install build-essential mpich
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Run tox
run: tox