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
6 changes: 1 addition & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ jobs:
goos: darwin
goarch: arm64
artifact: jernel-darwin-arm64
- os: windows-latest
goos: windows
goarch: amd64
artifact: jernel-windows-amd64.exe
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand All @@ -34,7 +30,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
go-version: "1.24"

- name: Build
env:
Expand Down
38 changes: 38 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Test

on:
pull_request:
branches: [main]
push:
branches: [main]

jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.24"

- name: Run tests
run: go test ./... -v -race

build:
name: Verify Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.24"

- name: Build
run: go build -o jernel .
32 changes: 0 additions & 32 deletions .gitlab-ci.yml

This file was deleted.