Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
fancycode committed Aug 26, 2024
1 parent 4496102 commit 1da666d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
with:
go-version: "1.21"

- name: Install dependencies
run: |
sudo apt-get -y update
sudo apt-get -y install libheif-dev
- name: lint
uses: golangci/[email protected]
with:
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ jobs:
- "1.23"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}

- name: Install dependencies
run: |
apt-get -y update
apt-get -y install libheif-dev
- name: Install dependencies
run: |
sudo apt-get -y update
sudo apt-get -y install libheif-dev
- name: Run tests
run: |
go test -v ./...
- name: Run tests
run: |
go test -v ./...

0 comments on commit 1da666d

Please sign in to comment.