Skip to content

Commit

Permalink
Merge pull request #82 from rileynewton/RE-15366-migrate-travis-to-gh…
Browse files Browse the repository at this point in the history
…-action

(RE-15366, maint) Migrate travis testing to GH action using jdk8, 11 & 17, regenerate certs
  • Loading branch information
jonathannewman committed Jun 20, 2023
2 parents ac4435c + 1caf1bc commit 308d2d9
Show file tree
Hide file tree
Showing 21 changed files with 1,406 additions and 145 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: [ '8', '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.

Loading

0 comments on commit 308d2d9

Please sign in to comment.