Skip to content

Add support for ordering of stories in the JUnit5 engine. #9

Add support for ordering of stories in the JUnit5 engine.

Add support for ordering of stories in the JUnit5 engine. #9

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build on Java ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8 ]
steps:
- uses: actions/checkout@v4
- name: Set up Java ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build with Java ${{ matrix.java }}
run: mvn clean verify -B