Skip to content

Commit

Permalink
check freebsd gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
sckott committed Nov 15, 2024
1 parent 2884a72 commit ff11de2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/freebsd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: freebsd

on: [push]

jobs:
test:
runs-on: ubuntu-latest
name: A job to run test in FreeBSD
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- name: Test in FreeBSD
id: test
uses: vmactions/freebsd-vm@v1
with:
envs: 'GITHUB_TOKEN'
usesh: true
prepare: |
pkg install -y uv
run: |
pwd
uv python install 3.11.5
uv sync --all-extras --dev
make test

0 comments on commit ff11de2

Please sign in to comment.