Skip to content

Commit 79c895e

Browse files
authored
#68: Updated Minimum Python version to 3.10 (#69)
* #68: Updated Minimum Python version to 3.10 * Renamed workflows * Changed workflow trigger from push to pull_request
1 parent 6b8f87e commit 79c895e

File tree

6 files changed

+83
-144
lines changed

6 files changed

+83
-144
lines changed

.github/workflows/ci.yml

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
11
name: CI
22

33
on:
4-
push:
5-
branches-ignore:
6-
- "github-pages/*"
7-
- "gh-pages/*"
8-
- "main"
9-
- "master"
104
pull_request:
11-
types: [opened, reopened]
12-
schedule:
13-
# “At 00:00 on every 7th day-of-month from 1 through 31.” (https://crontab.guru)
14-
- cron: "0 0 1/7 * *"
155

166
jobs:
177

@@ -33,6 +23,7 @@ jobs:
3323
run: true
3424

3525
slow-test-detection:
26+
name: Run Slow or Expensive Tests (e.g. SaaS)?
3627
runs-on: ubuntu-latest
3728
steps:
3829
- name: Detect Slow Tests
@@ -41,6 +32,7 @@ jobs:
4132
slow-tests
4233

4334
run-slow-tests:
35+
name: Run Slow or Expensive Tests (e.g. SaaS) if Requested
4436
uses: ./.github/workflows/run-tests.yml
4537
needs: [ slow-test-detection ]
4638
secrets: inherit

.github/workflows/pr-merge.yml

-5
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ on:
88

99
jobs:
1010

11-
ci-job:
12-
name: Checks
13-
uses: ./.github/workflows/checks.yml
14-
secrets: inherit
15-
1611
publish-docs:
1712
name: Publish Documentation
1813
uses: ./.github/workflows/gh-pages.yml

doc/changes/unreleased.md

+4
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
# Unreleased
2+
3+
## Refactorings
4+
5+
* #68: Update to Python 3.10

0 commit comments

Comments
 (0)