Skip to content
This repository was archived by the owner on May 7, 2025. It is now read-only.

Add notice about archiving to README #158

Add notice about archiving to README

Add notice about archiving to README #158

Workflow file for this run

name: Tyr CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
name: JDK ${{matrix.java-version}} JVM build and tests
timeout-minutes: 120
strategy:
fail-fast: false
matrix:
java-version: [11, 14]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: checkout
- uses: actions/setup-java@v1
name: Set up JDK ${{ matrix.java-version }}
with:
java-version: ${{ matrix.java-version }}
- name: Build with Maven
run: mvn clean install