From e905a580b1b50a9d6ea35665a9796330e9d95a71 Mon Sep 17 00:00:00 2001 From: Jacob Carlborg Date: Fri, 12 Apr 2024 09:39:20 +0200 Subject: [PATCH] Add NetBSD ARM64 to full example --- readme.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 484af2e..e7a30a1 100644 --- a/readme.md +++ b/readme.md @@ -48,9 +48,10 @@ jobs: ### Full Example -Here's a sample workflow file which will set up a matrix resulting in four jobs. -One which will run on FreeBSD 14.0, one which runs OpenBSD 7.5, one which runs -NetBSD 10.0 and one which runs OpenBSD 7.5 on ARM64. +Here's a sample workflow file which will set up a matrix resulting in four +jobs. One which will run on FreeBSD 14.0, one which runs OpenBSD 7.5, one which +runs NetBSD 10.0, one which runs OpenBSD 7.5 on ARM64 and one which runs NetBSD +10.0 on ARM64. ```yaml name: CI @@ -79,6 +80,9 @@ jobs: architecture: x86-64 version: '10.0' + - name: netbsd + architecture: arm64 + version: '10.0 steps: - uses: actions/checkout@v4