Skip to content

Commit

Permalink
fix(ci): missing name & disable pull_request trigger event
Browse files Browse the repository at this point in the history
  • Loading branch information
mittalyashu committed Feb 11, 2024
1 parent 8351727 commit 0138068
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name:
name: CI

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

jobs:

build:
runs-on: ubuntu-latest
steps:
Expand All @@ -24,5 +20,5 @@ jobs:
- name: Build
run: go build -v ./main.go

- name: Test
run: go test -v ./...
# - name: Test
# run: go test -v ./...

0 comments on commit 0138068

Please sign in to comment.