Skip to content

Commit

Permalink
Add starting CI
Browse files Browse the repository at this point in the history
  • Loading branch information
NamelessOne91 authored Jun 7, 2024
1 parent ef1b897 commit 8d3a1ef
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/simple_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Simple CI

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

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: './go.mod'

- name: Download dependencies
run: go mod download

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

0 comments on commit 8d3a1ef

Please sign in to comment.