We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df6bde8 commit 598161cCopy full SHA for 598161c
1 file changed
.github/workflows/ci.yml
@@ -10,11 +10,15 @@ jobs:
10
strategy:
11
fail-fast: false
12
matrix:
13
- os: [ubuntu-latest, macos-latest, windows-latest]
+ os: [ubuntu-latest]
14
15
runs-on: ${{ matrix.os }}
16
17
steps:
18
+ - name: Install dependencies (Ubuntu)
19
+ if: runner.os == 'Linux'
20
+ run: sudo apt-get update && sudo apt-get install -y hmmer
21
+
22
- name: Checkout repo
23
uses: actions/checkout@v4
24
0 commit comments