Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:
- name: Configure git to not checkout CRLF
run: git config --global --add core.autocrlf false

- name: Install OS-specific dependencies
run: bash ./setup/${{ matrix.os }}.bash

- name: Test
run: |
bats --pretty --timing test --filter-tags !format
Expand Down
1 change: 1 addition & 0 deletions setup/macos-13.bash
1 change: 1 addition & 0 deletions setup/macos-14.bash
4 changes: 4 additions & 0 deletions setup/macos-all.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

brew install libmagic

6 changes: 6 additions & 0 deletions setup/ubuntu-24.04.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

sudo apt-get update && \
sudo apt-get install -y libmagic-dev && \
sudo apt-get clean && sudo rm -rf /var/lib/apt/lists/*

3 changes: 3 additions & 0 deletions setup/windows-2022.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

choco install file
Loading