Periodic UX check #229
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: Periodic UX check | |
on: | |
schedule: | |
- cron: 0 0 * * * | |
workflow_dispatch: | |
jobs: | |
# Create strategy matrix with a python script | |
create_matrix: | |
name: Create matrix | |
runs-on: ubuntu-latest | |
outputs: | |
matrix-json: ${{ steps.matrix.outputs.matrix }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Update pip | |
run: python -m pip install --upgrade pip | |
- name: Install wheel | |
run: pip install wheel | |
- name: Install requirements | |
run: pip install -r ./.github/scripts/requirements.txt | |
- name: Create matrix | |
id: matrix | |
run: python ./.github/scripts/create_python_matrix.py true | |
# Test the action with all possible combinations of python versions and os | |
test_action: | |
needs: create_matrix | |
runs-on: ${{ matrix.os }} | |
name: Test setup Python ${{ matrix.python-version }} for ${{ matrix.os }} with cache ${{ matrix.cache }} | |
strategy: | |
fail-fast: false | |
matrix: ${{ fromJSON(needs.create_matrix.outputs.matrix-json) }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: MatteoH2O1999/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-build: info | |
cache-build: ${{ matrix.cache }} | |
- name: Check Python version | |
run: python ./.github/scripts/check_python_version.py ${{ matrix.python-version }} |