Skip to content

Commit

Permalink
feat: create build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavo-depaula committed Dec 5, 2020
1 parent 38ef0d7 commit a5f4891
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Clojure CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: lein deps
- name: Generate Jars
run: lein uberjar

0 comments on commit a5f4891

Please sign in to comment.