Skip to content

Commit

Permalink
Merge pull request #27 from GiganticMinecraft/pr_ci
Browse files Browse the repository at this point in the history
add pull request ci
  • Loading branch information
outductor authored Jan 4, 2024
2 parents 201ad6c + f1f91af commit 4d43194
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-assembled-jar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build jar and publish it in a docker container
on:
push:
branches:
- master
- main

jobs:
build:
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Check sbt assembly on pull request
on:
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
with:
submodules: recursive

- name: Build artifact
run: sbt assembly

0 comments on commit 4d43194

Please sign in to comment.