Skip to content

Added a protocol for detecting Errors and Success in a collection. #21

Added a protocol for detecting Errors and Success in a collection.

Added a protocol for detecting Errors and Success in a collection. #21

Workflow file for this run

name: ci/cd
on:
push:
branches: [main, release/*]
pull_request:
branches: [main, release/*]
jobs:
build:
name: Build on OpenJDK ${{ matrix.jdk_version }} / ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
matrix:
# JDK LTS: 11, 17
jdk_version: [11]
os: [ubuntu-latest]
container:
image: clojure:openjdk-${{ matrix.jdk_version }}-tools-deps
steps:
- uses: actions/checkout@v2
- name: Version
run: clj -h | grep Version
- name: Tests
run: clj -M:test
- name: Package
run: clj -M:uberjar