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