Skip to content

Update greenmail to 2.1.0 #757

Update greenmail to 2.1.0

Update greenmail to 2.1.0 #757

Workflow file for this run

name: CI
on:
pull_request:
jobs:
ci-matrix:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [ 11, 17 ]
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
with:
fetch-depth: 100
- name: Fetch tags
run: git fetch --depth=100 origin +refs/tags/*:refs/tags/*
- uses: olafurpg/setup-scala@v14
with:
java-version: ${{ matrix.java }}
- name: Coursier cache
uses: coursier/cache-action@v6
- name: sbt ci ${{ github.ref }}
run: sbt ci
ci:
runs-on: ubuntu-latest
needs: [ci-matrix]
steps:
- name: Aggregate of lint, and all tests
run: echo "ci passed"