mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-10 02:39:18 +02:00
26 lines
421 B
YAML
26 lines
421 B
YAML
name: freebsd
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: make
|
|
uses: vmactions/freebsd-vm@v1.0.8
|
|
with:
|
|
prepare: |
|
|
pkg install -y \
|
|
devel/check \
|
|
devel/git \
|
|
devel/pkgconf
|
|
run: |
|
|
make
|
|
make test
|