mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-23 00:29:20 +02:00
Add freebsd github action
This commit is contained in:
parent
b20b4f6fae
commit
d28e8f76ae
|
@ -0,0 +1,21 @@
|
||||||
|
name: freebsd
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: macos-12
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: make
|
||||||
|
uses: vmactions/freebsd-vm@v0
|
||||||
|
with:
|
||||||
|
prepare: pkg install -y libcheck
|
||||||
|
run: |
|
||||||
|
make
|
||||||
|
make test
|
Loading…
Reference in New Issue