Skip to content

Commit

Permalink
Removed macos github actions because not py3.7 not supported anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
micahcarroll committed Apr 27, 2024
1 parent b7aeea7 commit 877fb5f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build_osx:
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
Expand Down
33 changes: 17 additions & 16 deletions .github/workflows/pythontests.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
on: ['push', 'pull_request']
jobs:
osx_mdp_tests:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
architecture: 'x64'
- name: Install dependencies
run: python -m pip install --upgrade pip
- name: Setup
run: pip install -e .[harl]
- name: Run tests
run: |
python -m unittest discover -s testing/ -p "*_test.py"
# Removed macos tests because github actions doesn't support python 3.7 anymore
# osx_mdp_tests:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v3
# - name: Set up Python 3.7
# uses: actions/setup-python@v4
# with:
# python-version: '3.7'
# architecture: 'x64'
# - name: Install dependencies
# run: python -m pip install --upgrade pip
# - name: Setup
# run: pip install -e .[harl]
# - name: Run tests
# run: |
# python -m unittest discover -s testing/ -p "*_test.py"
ubuntu_mdp_tests:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 877fb5f

Please sign in to comment.