Skip to content

Commit a884410

Browse files
Handle CI via GH Actions (#3)
1 parent 3ee08ac commit a884410

File tree

3 files changed

+20
-19
lines changed

3 files changed

+20
-19
lines changed

.circleci/config.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Tests
2+
on: [push]
3+
4+
jobs:
5+
test:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Prepare java
9+
uses: actions/setup-java@v1
10+
with:
11+
java-version: 1.8
12+
- name: Setup Clojure
13+
uses: DeLaGuardo/setup-clojure@2.0
14+
with:
15+
lein: 2.9.1
16+
- name: Checkout
17+
uses: actions/checkout@v2-beta
18+
- name: Run tests
19+
run: lein test :all

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `clj-http-lite` [![cljdoc badge](https://cljdoc.xyz/badge/org.martinklepsch/clj-http-lite)](https://cljdoc.xyz/d/org.martinklepsch/clj-http-lite/CURRENT) [![CircleCI](https://circleci.com/gh/martinklepsch/clj-http-lite.svg?style=svg)](https://circleci.com/gh/martinklepsch/clj-http-lite)
1+
# `clj-http-lite` [![cljdoc badge](https://cljdoc.xyz/badge/org.martinklepsch/clj-http-lite)](https://cljdoc.xyz/d/org.martinklepsch/clj-http-lite/CURRENT) [![CI](https://github.com/martinklepsch/clj-http-lite/workflows/Tests/badge.svg)](https://github.com/martinklepsch/clj-http-lite/actions)
22

33
A Clojure HTTP library similar to [clj-http](http://github.com/dakrone/clj-http), but more lightweight. Compatible with GraalVM.
44

0 commit comments

Comments
 (0)