Skip to content

Commit

Permalink
switch to GH actions for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
d-t-w committed Sep 30, 2022
1 parent 4126640 commit 5283c97
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 42 deletions.
42 changes: 0 additions & 42 deletions .circleci/config.yml

This file was deleted.

35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Cronut Test

on: [push]

jobs:

clojure:
runs-on: ubuntu-latest

strategy:
fail-fast: false

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Java11
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '11'

- name: Install Clojure
uses: DeLaGuardo/[email protected]
with:
lein: 'latest'
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Deps
working-directory: ./
run: lein deps

- name: Smoke
working-directory: ./
run: lein smoke

0 comments on commit 5283c97

Please sign in to comment.