Skip to content

Commit

Permalink
squash and signed commit
Browse files Browse the repository at this point in the history
  • Loading branch information
capri-xiyue committed Jan 5, 2023
1 parent 6fc0e1a commit 1168059
Show file tree
Hide file tree
Showing 6 changed files with 573 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: 'ci'

on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
workflow_dispatch:

concurrency:
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
cancel-in-progress: true

jobs:
# Linting jobs - go
go_lint:
uses: 'abcxyz/pkg/.github/workflows/go-lint.yml@main' # ratchet:exclude
with:
go_version: '1.19'

# lint is a virtual job that is used as dependencies for later jobs.
lint:
runs-on: 'ubuntu-latest'
needs:
- 'go_lint'
steps:
- run: 'echo prechecks complete'
Loading

0 comments on commit 1168059

Please sign in to comment.