mirror of
https://github.com/hackacad/bastille.git
synced 2026-01-01 18:30:26 +01:00
37 lines
662 B
YAML
37 lines
662 B
YAML
name: Test
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
name: BastilleBSD testing
|
|
env:
|
|
MYTOKEN : ${{ secrets.MYTOKEN }}
|
|
MYTOKEN2: "value2"
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Test in FreeBSD
|
|
id: test
|
|
uses: vmactions/freebsd-vm@v1
|
|
with:
|
|
envs: 'MYTOKEN MYTOKEN2'
|
|
usesh: true
|
|
prepare: |
|
|
pkg install -y curl
|
|
|
|
run: |
|
|
pwd
|
|
ls -lah
|
|
whoami
|
|
env
|
|
freebsd-version
|
|
sysctl hw.model
|
|
sysctl hw.ncpu
|
|
sysctl hw.physmem
|
|
sysctl hw.usermem
|
|
|
|
|