Skip to content

Commit dda6d0c

Browse files
authored
Merge pull request #7 from druzsan/feature/prepare-for-release
Feature/prepare for release
2 parents c71074a + 34952d5 commit dda6d0c

File tree

5 files changed

+137
-225
lines changed

5 files changed

+137
-225
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: '🔍 CI'
22

3-
on: push
3+
on:
4+
push:
5+
schedule:
6+
- cron: '0 6 * * *'
7+
workflow_dispatch:
48

59
# This workflow serves for multiple purposes:
610
# - Action code check
@@ -16,7 +20,7 @@ jobs:
1620
matrix: ${{ steps.setup-matrix.outputs.matrix }}
1721
steps:
1822
- id: setup-matrix
19-
uses: druzsan/setup-matrix@feature/use-python-dockerfile
23+
uses: druzsan/setup-matrix@main
2024
with:
2125
matrix: |
2226
os: [ubuntu-latest, windows-latest, macos-latest]

.github/workflows/integration-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
outputs:
1818
matrix: ${{ steps.setup-matrix.outputs.matrix }}
1919
steps:
20-
- uses: druzsan/setup-matrix@feature/use-python-dockerfile
20+
- uses: druzsan/setup-matrix@main
2121
with:
2222
matrix: | # Setup matrix with OS and Python version
2323
os: [ubuntu-latest, windows-latest]
@@ -33,7 +33,7 @@ jobs:
3333
outputs:
3434
matrix: ${{ steps.setup-matrix.outputs.matrix }}
3535
steps:
36-
- uses: druzsan/setup-matrix@feature/use-python-dockerfile
36+
- uses: druzsan/setup-matrix@main
3737
with:
3838
matrix: '{ os: [ubuntu-latest, windows-latest], python-version: [3.8, 3.10, 3.12] }'
3939
# Jobs expected to fail
@@ -43,15 +43,15 @@ jobs:
4343
matrix: ${{ steps.setup-matrix.outputs.matrix }}
4444
steps:
4545
- id: expected-to-fail
46-
uses: druzsan/setup-matrix@feature/use-python-dockerfile
46+
uses: druzsan/setup-matrix@main
4747
continue-on-error: true
4848
- if: steps.expected-to-fail.outcome != 'failure'
4949
run: echo "Step expected to fail didn't fail" && exit 1
5050
setup-matrix-windows:
5151
runs-on: windows-latest
5252
steps:
5353
- id: expected-to-fail
54-
uses: druzsan/setup-matrix@feature/use-python-dockerfile
54+
uses: druzsan/setup-matrix@main
5555
with:
5656
matrix: '{ os: [ubuntu-latest, windows-latest], python-version: [3.8, 3.10, 3.12] }'
5757
continue-on-error: true
@@ -61,7 +61,7 @@ jobs:
6161
runs-on: macos-latest
6262
steps:
6363
- id: expected-to-fail
64-
uses: druzsan/setup-matrix@feature/use-python-dockerfile
64+
uses: druzsan/setup-matrix@main
6565
with:
6666
matrix: '{ os: [ubuntu-latest, windows-latest], python-version: [3.8, 3.10, 3.12] }'
6767
continue-on-error: true

.github/workflows/quickstart.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ jobs:
1717
outputs:
1818
matrix: ${{ steps.setup-matrix.outputs.matrix }}
1919
steps:
20-
- id: setup-matrix
21-
uses: druzsan/setup-matrix@feature/use-python-dockerfile
20+
- name: '🧱 Build Matrix'
21+
id: setup-matrix
22+
uses: druzsan/setup-matrix@main
2223
with:
2324
# Use | to preserve valid YAML syntax
2425
matrix: |
@@ -40,5 +41,6 @@ jobs:
4041
matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix) }}
4142
runs-on: ubuntu-latest
4243
steps:
43-
- run: |
44+
- name: '📢 Echo'
45+
run: |
4446
echo "fruit: ${{ matrix.fruit }}, animal: ${{ matrix.fruit }}, color: ${{ matrix.color }}"

.github/workflows/unit-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121
steps:
2222
# Setup matrix on a dev branch
2323
- if: startsWith(github.ref, 'refs/tags/')
24-
uses: druzsan/setup-matrix@feature/use-python-dockerfile
24+
uses: druzsan/setup-matrix@main
2525
with:
2626
matrix: |
2727
os: [ubuntu-latest, windows-latest, macos-latest]
2828
python-version: [3.8, 3.10, 3.12]
2929
# Setup matrix on the main branch
3030
- if: github.ref == 'refs/heads/main'
31-
uses: druzsan/setup-matrix@feature/use-python-dockerfile
31+
uses: druzsan/setup-matrix@main
3232
with:
3333
matrix: |
3434
os: [ubuntu-latest]
@@ -40,7 +40,7 @@ jobs:
4040
python-version: 3.8
4141
# Setup matrix on a tag
4242
- if: github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/')
43-
uses: druzsan/setup-matrix@feature/use-python-dockerfile
43+
uses: druzsan/setup-matrix@main
4444
with:
4545
matrix: |
4646
os: [ubuntu-latest]

0 commit comments

Comments
 (0)