Skip to content

Commit

Permalink
YAML: Use multi-line arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
uklotzde committed Jan 28, 2024
1 parent 547810e commit 388333d
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ name: Rust

on:
push:
branches: [main]
branches:
- main
pull_request:
branches: [main]
branches:
- main
workflow_dispatch:

env:
Expand All @@ -20,8 +22,12 @@ jobs:
strategy:
fail-fast: false # don't give up on the whole matrix if one variant fails
matrix:
linkage: ['static', 'shared']
library: ['hidraw', 'libusb']
linkage:
- static
- shared
library:
- hidraw
- libusb

steps:
- name: Checkout repository and submodules
Expand Down

0 comments on commit 388333d

Please sign in to comment.