Mercurial > crates > systemd-socket
view .github/workflows/rust.yml @ 17:dfb727367934
Allow specifying systemd name directly
When an application has systemd name by parsing a configuration directly
it can use the function added in this change to construct `SocketAddr`
without having to allocate an intermediate string.
author | Martin Habovstiak <martin.habovstiak@gmail.com> |
---|---|
date | Tue, 22 Dec 2020 14:15:49 +0100 |
parents | 27456533853e |
children | fbb9e1206e3c |
line wrap: on
line source
name: Rust on: push: branches: [ master ] pull_request: branches: [ master ] workflow_dispatch: env: CARGO_TERM_COLOR: always jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - uses: actions/checkout@v2 - name: Build run: cargo build --verbose - name: Run tests run: cargo test --all-features --verbose