Skip to content

Commit 598161c

Browse files
committed
fix ci: remove windows and mac and install hmmer
1 parent df6bde8 commit 598161c

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,15 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
os: [ubuntu-latest, macos-latest, windows-latest]
13+
os: [ubuntu-latest]
1414

1515
runs-on: ${{ matrix.os }}
1616

1717
steps:
18+
- name: Install dependencies (Ubuntu)
19+
if: runner.os == 'Linux'
20+
run: sudo apt-get update && sudo apt-get install -y hmmer
21+
1822
- name: Checkout repo
1923
uses: actions/checkout@v4
2024

0 commit comments

Comments
 (0)