Skip to content

Commit

Permalink
Update build-and-test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yonas authored Aug 23, 2024
1 parent 901a837 commit b0ac400
Showing 1 changed file with 25 additions and 4 deletions.
29 changes: 25 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,29 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
id: build
uses: vmactions/freebsd-vm@v1
with:
usesh: true
run: |
pwd
ls -lah
whoami
env
freebsd-version
cargo build --release
- name: Test
id: test
uses: vmactions/freebsd-vm@v1
with:
usesh: true
run: |
pwd
ls -lah
whoami
env
freebsd-version
cargo test --verbose

0 comments on commit b0ac400

Please sign in to comment.