Skip to content

Commit

Permalink
Disable CIs not being used and remove python 38
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-kipawa committed Oct 25, 2024
1 parent 9f9eece commit c54eac5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: Documentation

on:
push:
branches:
- main
workflow_dispatch:

#push:
# branches:
# - main

jobs:
build:
Expand All @@ -12,10 +14,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.12"

- name: Install mikeplus
run: pip install .[dev]
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/full_test_2024_0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Full test

on:
workflow_dispatch:

#push:
# branches: [ "main" ]
#pull_request:
Expand All @@ -13,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.12"]
python-version: ["3.9", "3.12"]

steps:
- name: Checkout branch with MIKE+ dependency
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,20 @@
name: Python application

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:

#push:
# branches: [ "main" ]
#pull_request:
# branches: [ "main" ]

jobs:
build:

runs-on: windows-latest
strategy:
matrix:
python-version: ['3.8']
python-version: ['3.9']

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit c54eac5

Please sign in to comment.