Skip to content

Commit

Permalink
test: Add GitHub Actions workflow instead of CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidz committed Apr 1, 2024
1 parent 881cb8d commit 7e25679
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 39 deletions.
39 changes: 0 additions & 39 deletions .circleci/config.yml

This file was deleted.

68 changes: 68 additions & 0 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Lint and Test

on: push

jobs:
clj_style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeLaGuardo/setup-clojure@master
with:
cljstyle: latest
- run: make format-check

clj_kondo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeLaGuardo/setup-clojure@master
with:
clj-kondo: latest
- run: make lint

test:
needs: [clj_style, clj_kondo]
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '11'
java-package: jdk
architecture: x64

- uses: DeLaGuardo/setup-clojure@master
with:
lein: '2.11.2'

- uses: actions/setup-node@v3
with:
node-version: '18.16.1'
cache: 'yarn'
cache-dependency-path: yarn.lock


- name: Show versions
run: |
java -version
lein version
yarn -v
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.m2
~/.lein
key: clj-cache-test-${{ hashFiles('project.clj') }}
restore-keys: |
clj-cache-test-
- run: yarn install

- name: Run tests
run: make test

0 comments on commit 7e25679

Please sign in to comment.