Skip to content

Commit

Permalink
chore: replace CircleCI with Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cwaldren-ld committed Feb 20, 2024
1 parent 12774d2 commit ca1153c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 18 deletions.
18 changes: 0 additions & 18 deletions .circleci/config.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Run CI
on:
push:
branches: [ 'v2' ]
paths-ignore:
- '**.md' # Do not need to run CI for markdown changes.
pull_request:
branches: [ 'v2', 'feat/**' ]
paths-ignore:
- '**.md'

env:
GOPRIVATE: github.com/launchdarkly/*-private

jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ inputs.go-version }}
uses: actions/setup-go@v4
with:
go-version: 1.18
- name: Run tests
run: make test
- name: Run linter
run: make lint

0 comments on commit ca1153c

Please sign in to comment.