mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-10 02:39:18 +02:00
22 lines
331 B
YAML
22 lines
331 B
YAML
|
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
|