Installation and tests on CentOS with Docker #60
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: Installation and tests on CentOS with Docker | |
on: | |
schedule: | |
- cron: '0 2 * * 1' # every Monday at 2:00am | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref }} | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Run Dockerfile installation and tests | |
run: | | |
cd tests/docker/Centos/ | |
docker build -f Dockerfile . |