2023-04-20 12:19:10 +00:00
|
|
|
name: openbsd
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
2024-07-16 09:12:53 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2023-04-20 12:19:10 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
2024-07-16 08:57:06 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-04-20 12:19:10 +00:00
|
|
|
|
|
|
|
steps:
|
2023-11-29 23:26:17 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-04-20 12:19:10 +00:00
|
|
|
- name: make
|
2024-07-16 08:46:40 +00:00
|
|
|
uses: vmactions/openbsd-vm@v1.0.8
|
2023-04-20 12:19:10 +00:00
|
|
|
with:
|
|
|
|
prepare: |
|
2023-04-20 12:24:45 +00:00
|
|
|
pkg_add \
|
2023-04-20 12:19:10 +00:00
|
|
|
check \
|
|
|
|
git \
|
|
|
|
pkgconf
|
|
|
|
run: |
|
|
|
|
make
|
|
|
|
make test
|