Skip to content

Commit

Permalink
(RE-15366) Migrate travis testing to GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
rileynewton committed Jun 20, 2023
1 parent ac4435c commit 1f61494
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 29 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/lein-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: lein_test

on:
workflow_dispatch:
push:
branches:
- main
paths: ['src/**','test/**']
pull_request:
types: [opened, reopened, edited, synchronize]
paths: '*' #['src/**','test/**']

jobs:
run-lein-tests:
name: lein test - Java ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17' ]
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Setup java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Install Clojure tools
uses: DeLaGuardo/setup-clojure@10.2
with:
cli: latest # Clojure CLI based on tools.deps
lein: latest # Leiningen
boot: latest # Boot.clj
bb: latest # Babashka
clj-kondo: latest # Clj-kondo
cljstyle: latest # cljstyle
zprint: latest # zprint
- name: Run lein tests with dev profile
run: lein with-profile dev test
env:
FIPS: false
- name: Run lein tests with fips profile
run: lein with-profile fips test
env:
FIPS: true
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

0 comments on commit 1f61494

Please sign in to comment.