Skip to content

Commit

Permalink
Update GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hackdna committed Jan 10, 2023
1 parent 8fde57e commit c981140
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-20.04', 'windows-2019', 'macos-11']
os: ['ubuntu-22.04', 'windows-2022', 'macos-12']
steps:
- name: Checkout Forest code from GitHub repo
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install Forest dependencies
# required by librosa
if: ${{ matrix.os == 'ubuntu-20.04' }}
if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: sudo apt-get install -y ffmpeg libsndfile1
- name: Install Forest
run: pip install -e .
Expand Down

0 comments on commit c981140

Please sign in to comment.