Skip to content

Commit

Permalink
No longer test before release
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoH2O1999 committed Jun 20, 2023
1 parent a5668f5 commit 1d3b8d7
Showing 1 changed file with 0 additions and 43 deletions.
43 changes: 0 additions & 43 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,51 +6,8 @@ on:
- "created"

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@v3
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 false

# 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 }}
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.create_matrix.outputs.matrix-json) }}
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Python ${{ matrix.python-version }}
uses: ./
with:
python-version: ${{ matrix.python-version }}
allow-build: info
- name: Check Python version
run: python ./.github/scripts/check_python_version.py ${{ matrix.python-version }}

# Update tags
update_tags:
needs: test_action
runs-on: ubuntu-latest
name: Update version tags
steps:
Expand Down

0 comments on commit 1d3b8d7

Please sign in to comment.