Add test for Unix socket creation permissions (#590) #7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ---------------------------------------------------------------------------- # | |
| # | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # | |
| # | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # | |
| # | ███████║██║ ██║██████╔╝███████║█████╗ | # | |
| # | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # | |
| # | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # | |
| # | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # | |
| # +--------------------------------------------+ # | |
| # # | |
| # Distributed Systems Runtime # | |
| # ---------------------------------------------------------------------------- # | |
| # Copyright 2022 - 2024, the aurae contributors # | |
| # SPDX-License-Identifier: Apache-2.0 # | |
| # ---------------------------------------------------------------------------- # | |
| # | |
| # Ensure the codebase is formatted. Fails if `cargo fmt` would change files. | |
| # | |
| name: "(000) [ubuntu:latest] cargo fmt --check" | |
| on: | |
| push: | |
| branches: main | |
| pull_request: | |
| branches: main | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| fmt: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Check formatting | |
| run: cargo fmt --all -- --check |