Skip to content

Commit

Permalink
feat(ci): ci in main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
zakhaev26 authored Nov 10, 2023
1 parent 593d986 commit ccf23a0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build

on:
push:
branches:
- api/*
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.0

- name: Build API
run: go build -o apiserver .

0 comments on commit ccf23a0

Please sign in to comment.