79212646

Date: 2024-11-21 19:24:48
Score: 0.5
Natty:
Report link

Use max-parallel: 1, like this:

...
jobs:
  testing:
    strategy:
      # Each job needs its own backend. Running backends in parallel requires using differnt ports.
      max-parallel: 1
      matrix:
        selection: [
          'default',
          'xml-storage'
        ]
    name: Unit tests
    runs-on: ubuntu-latest
...
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Martijn Dirkse