2023-04-20 11:42:51 +00:00
|
|
|
name: freebsd
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
2024-07-16 09:12:53 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2023-04-20 11:42:51 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
2024-07-16 08:57:06 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-04-20 11:42:51 +00:00
|
|
|
|
|
|
|
steps:
|
2023-11-29 23:26:17 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-04-20 11:42:51 +00:00
|
|
|
- name: make
|
2024-07-16 08:46:40 +00:00
|
|
|
uses: vmactions/freebsd-vm@v1.0.8
|
2023-04-20 11:42:51 +00:00
|
|
|
with:
|
2023-04-20 12:01:07 +00:00
|
|
|
prepare: |
|
|
|
|
pkg install -y \
|
|
|
|
devel/check \
|
|
|
|
devel/git \
|
|
|
|
devel/pkgconf
|
2023-04-20 11:42:51 +00:00
|
|
|
run: |
|
|
|
|
make
|
|
|
|
make test
|