Skip to content

Commit 57e2d41

Browse files
Merge pull request #4 from ELF-Nigel/main
Patched timestamp login bypass and fixed formatting
2 parents 261908c + b1de600 commit 57e2d41

File tree

4 files changed

+419
-198
lines changed

4 files changed

+419
-198
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Set up Go
15+
uses: actions/setup-go@v5
16+
with:
17+
go-version: "1.21.x"
18+
- name: Build
19+
run: go build ./...
20+
- name: Test
21+
run: go test ./...

0 commit comments

Comments
 (0)