#4446 page stamping for redline packages #10
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: Zipping Services CI | |
on: | |
pull_request: | |
branches: | |
- main | |
- dev | |
- dev-marshal | |
- test-marshal | |
paths: | |
- "computingservices/ZippingServices/**" | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./computingservices/ZippingServices | |
jobs: | |
docker-build-check: | |
runs-on: ubuntu-20.04 | |
name: Build dockerfile to ensure it works | |
steps: | |
- uses: actions/checkout@v2 | |
- name: docker build to check strictness | |
id: docker-build | |
run: | | |
docker build -f Dockerfile.local . | |
python-build-check: | |
runs-on: ubuntu-20.04 | |
name: Build python to ensure it works | |
strategy: | |
matrix: | |
# python-version: [3.6, 3.7, 3.8, 3.9] | |
python-version: [3.9] | |
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 | |
pip install flake8 pytest | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |