Skip to content

Commit

Permalink
switch between brew and apt in github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
GDeLaurentis committed Feb 5, 2025
1 parent bf432a2 commit c837893
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,18 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- name: Install singular
- name: Install Singular on Ubuntu
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install singular
- name: Install Singular on macOS
if: runner.os == 'macOS'
run: |
brew update
brew install singular
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit c837893

Please sign in to comment.