mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-13 03:49:20 +02:00
Add openbsd github action
This commit is contained in:
parent
3a4a69f50d
commit
057be6ce64
|
@ -0,0 +1,25 @@
|
|||
name: openbsd
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: macos-12
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: make
|
||||
uses: vmactions/openbsd-vm@v0
|
||||
with:
|
||||
prepare: |
|
||||
pkg_add install -y \
|
||||
check \
|
||||
git \
|
||||
pkgconf
|
||||
run: |
|
||||
make
|
||||
make test
|
Loading…
Reference in New Issue