Skip to content

Commit

Permalink
Merge pull request #80 from slickwarren/cwarren/gh-action-migration
Browse files Browse the repository at this point in the history
migrate from drone to GH action
  • Loading branch information
Sahota1225 authored May 24, 2024
2 parents 0a91c2f + e0db222 commit 9868a6b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .drone.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI on Pull Request

on:
pull_request:
branches:
- '*'
push:
branches:
- '*'

jobs:
ci:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install Helm
run: |
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
chmod 700 get_helm.sh && ./get_helm.sh
- name: Run CI
run: make

0 comments on commit 9868a6b

Please sign in to comment.