Skip to content

Commit

Permalink
setup CI base
Browse files Browse the repository at this point in the history
  • Loading branch information
darwin67 committed Feb 22, 2024
1 parent 414c5a2 commit 9330597
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
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: CI

on:
push:
branches:
- main
pull_request:

jobs:
# TODO: build?

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# TODO: install kotlin and ktlint

# - name: Lint
# run: make lint


# note: do we need a separate fmt?
# ktlint seems to cover what we need
# fmt:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ dev:
.PHONY: test
test:
gradle test inngest-core:test

.PHONY: lint
lint:
ktlint --color

0 comments on commit 9330597

Please sign in to comment.