fix(update): Remove I/O from main loop pull handling #221
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: alpenhorn-ci-build | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
lint-code: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: "3.11" | |
- name: Install pip dependencies | |
run: | | |
pip install flake8 pytest black | |
pip install -r requirements.txt | |
python setup.py develop | |
# - name: Run flake8 | |
# run: flake8 --show-source --ignore=E501,E741,E203,W503,E266 caput | |
- name: Check code with black | |
run: black --check . | |
run-tests: | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install pip dependencies | |
run: | | |
pip install -r requirements.txt | |
pip install -r test-requirements.txt | |
python setup.py develop | |
- name: Run serial tests | |
run: pytest -v tests/ | |
# run-docker-tests: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Set up Python 3.9 | |
# uses: actions/setup-python@v1 | |
# with: | |
# python-version: 3.9 | |
# - name: Install pip dependencies | |
# run: | | |
# pip install -r requirements.txt | |
# pip install -r test-requirements.txt | |
# python setup.py develop | |
# - name: Build docker image | |
# run: docker build -f tests/docker/Dockerfile.alpenhorn -t alpenhorn . | |
# - name: Run docker tests | |
# run: pytest tests/docker/test_docker.py | |
# env: | |
# RUN_DOCKER_TESTS: true |