Skip to content

Commit

Permalink
Migrate release-2.2 to GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
ericpromislow committed Jun 17, 2024
1 parent 2a768fd commit 4b5cf16
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 37 deletions.
37 changes: 0 additions & 37 deletions .drone.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Wrangler CI

on:
push:
pull_request:
tags:
- v*
branches:
- 'release-*'
- 'master'

jobs:
ci:
strategy:
matrix:
arch:
- amd64
- arm64
runs-on: org-${{ github.repository_owner_id }}-${{ matrix.arch }}-k8s
container: registry.suse.com/bci/golang:1.22
steps:
- name : Checkout repository
# https://github.com/actions/checkout/releases/tag/v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name : Install mockgen
run: go install -v -x github.com/golang/mock/mockgen@v1.6.0
- name : Run CI
run: bash scripts/ci

0 comments on commit 4b5cf16

Please sign in to comment.