drop apt_plugins, our console-scripts are enough #168
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: build | |
on: [pull_request] | |
jobs: | |
build: | |
name: Build package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.9" | |
- name: Install wheel | |
run: pip install wheel | |
- name: Build sdist and wheel | |
run: python setup.py sdist bdist_wheel | |
working-directory: src | |
containers: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 1 | |
matrix: | |
dockerfile: | |
- images/Dockerfile.el9 | |
- images/Dockerfile.el8 | |
- images/Dockerfile.el7 | |
- images/Dockerfile.el6 | |
- images/Dockerfile.f34 | |
- images/Dockerfile.f33 | |
- images/Dockerfile.suseLeap42 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: ${{ matrix.dockerfile }} | |
env: | |
DOCKERFILE: ${{ matrix.dockerfile }} | |
run: make docker-test && make docker-clean |