mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-21 14:41:26 +00:00
Add openbsd github action
This commit is contained in:
parent
3a4a69f50d
commit
057be6ce64
25
.github/workflows/openbsd.yml
vendored
Normal file
25
.github/workflows/openbsd.yml
vendored
Normal file
|
@ -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 a new issue