Files
eagle/.gitea/workflows/build.yaml
T
kodi 15d44b6daa
Build library & run tests / build (push) Failing after 22s
Add code to create a client connected to the network
2024-06-22 12:57:41 +02:00

17 lines
525 B
YAML

name: Build library & run tests
on: [push]
jobs:
build:
runs-on: nix
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run clippy (tcp feature)
run: nix develop . -c cargo clippy --no-default-features --features tcp
- name: Run clippy (unix feature)
run: nix develop . -c cargo clippy --no-default-features --features unix
- name: Build & test (tcp feature)
run: nix build .#tcp
- name: Build & test (unix feature)
run: nix build .#unix