Compare commits

...

2 Commits

Author SHA1 Message Date
e75f77be7f Merge branch 'develop' of ssh://git.s1d3sw1ped.com:2222/s1d3sw1ped/SwipedModSwitcher into develop
Some checks failed
Build and Artifact Vulture / build (push) Failing after 53s
2024-03-10 00:50:13 -06:00
a5655abe76 maybe found problem 2024-03-10 00:50:11 -06:00
2 changed files with 6 additions and 6 deletions

View File

@@ -19,7 +19,7 @@ jobs:
with: with:
go-version-file: 'go.mod' go-version-file: 'go.mod'
- name: setup-dependencies - name: setup-dependencies
run: | run: |-
apt install mingw-w64 gcc apt install mingw-w64 gcc
- name: Build - name: Build
run: go build -v ./... run: go build -v ./...
@@ -28,7 +28,7 @@ jobs:
- name: Check Vet - name: Check Vet
run: go vet ./... run: go vet ./...
- name: Check Formatting - name: Check Formatting
run: | run: |-
gofmt -s -l . gofmt -s -l .
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi
- name: Check Lint - name: Check Lint