QuiltMC / quilt-config

Quilt Config (aka "haven king's metadata of madness") is a library designed to facilitate the creation and management of config files.
Apache License 2.0
21 stars 8 forks source link

Change the test workflow to not fail fast #1

Closed osfanbuff63 closed 2 years ago

osfanbuff63 commented 2 years ago

By default in Actions, if one job fails from a matrix (in our case, if 8-jdk fails, then 11-jdk and 16-jdk will automatically fail). In this case, I assume we don't want that, as a matrix is mostly useless otherwise. (See here for more details.) So I've only changed the test workflow to include this line:

strategy:
  fail-fast: false
  matrix: 

so that this won't occur.