Skip to content

Commit

Permalink
CircleCI to GHA initial
Browse files Browse the repository at this point in the history
  • Loading branch information
eversC committed Nov 6, 2023
1 parent 6061834 commit 8dd4c1f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
Empty file added .github/workflows/cd.yml
Empty file.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

# Prevent concurrent builds of the same workflow
concurrency: ${{ github.workflow }}

on:
pull_request:
branches: ["master"]

workflow_dispatch:

jobs:
go_build:
runs-on: ubuntu-latest
container: eversc/go-pr-checks:1.19
steps:
- name: go build
run: |
export GO111MODULE=on
go build

0 comments on commit 8dd4c1f

Please sign in to comment.