Skip to content

Commit

Permalink
Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
totakke committed Mar 13, 2024
1 parent aa6c711 commit 9c767f9
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Prepare java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'

- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
cli: 1.11.2.1446

- name: Cache dependencies
uses: actions/cache@v4
with:
Expand All @@ -26,6 +37,17 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Prepare java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'

- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
cli: 1.11.2.1446

- name: Cache dependencies
uses: actions/cache@v4
with:
Expand All @@ -45,6 +67,17 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Prepare java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'

- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
cli: 1.11.2.1446

- name: Cache dependencies
uses: actions/cache@v4
with:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,17 @@ jobs:
with:
fetch-depth: 0

- name: Prepare java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'

- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
cli: 1.11.2.1446

- name: Build
run: clojure -T:build bin

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Gnife [naɪf]
[![build](https://github.com/chrovis/gnife/actions/workflows/build.yml/badge.svg)](https://github.com/chrovis/gnife/actions/workflows/build.yml)

Gnife is a CLI tool for manipulating genomic files and data.

Expand Down

0 comments on commit 9c767f9

Please sign in to comment.