Comply with OpenSSF enforcement #54
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
on: [push, pull_request] | |
# Declare default permissions as read only. | |
permissions: read-all | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- IDP_CONF: intelpython3_core | |
- IDP_CONF: intelpython3_full | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install Dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Build and test | |
run: | | |
python images.py --test ${{ matrix.IDP_CONF }} |