Skip to content

Commit

Permalink
Remov MacOS from CI (see #33 (comment))
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-andersson committed Oct 11, 2023
1 parent 852d0d2 commit 2d1791e
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
python-version: ['3.8', '3.11']

steps:
Expand All @@ -18,17 +18,19 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Delete huge unnecessary folders
- name: Delete huge unnecessary folders, and clean apt cache
run: |
rm -rf /usr/share/dotnet/
rm -rf /opt/ghc/
rm -rf /usr/local/share/boost/
rm -rf /opt/hostedtoolcache
rm -rf /usr/share/dotnet
rm -rf /opt/ghc
rm -rf "$AGENT_TOOLSDIRECTORY"
sudo apt-get clean
shell: bash
- name: Print space
run: df -h
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements.dev.txt
- name: Test with tox
Expand Down

0 comments on commit 2d1791e

Please sign in to comment.