rs-tftpd/.github/workflows/integration.yml
2024-07-01 22:17:45 +02:00

25 lines
529 B
YAML

name: Integration Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install atftp
run: |
sudo apt-get update
sudo apt-get install atftp
- name: Build
run: cargo build --features client --verbose
- name: Run tests
run: cargo test --test integration_test --features integration --verbose -- --test-threads 1