Bump libc from 0.2.175 to 0.2.178 #240
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
| # from https://github.com/jonhoo/rust-ci-conf | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| name: check | |
| jobs: | |
| fmt: | |
| runs-on: ubuntu-latest | |
| name: fmt | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Install stable | |
| uses: dtolnay/[email protected] | |
| with: | |
| components: rustfmt | |
| - name: install rustfmt | |
| run: rustup component add rustfmt | |
| - name: cargo fmt --check --all | |
| run: cargo fmt --check --all | |
| clippy: | |
| runs-on: ubuntu-latest | |
| name: ${{ matrix.toolchain }} / clippy | |
| permissions: | |
| contents: read | |
| checks: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| toolchain: ["1.88"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Install X libraries | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install libxft-dev libxinerama-dev lua5.4 liblua5.4-dev | |
| - name: Install ${{ matrix.toolchain }} | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| components: clippy | |
| - name: cargo clippy | |
| uses: actions-rs/clippy-check@v1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| args: --workspace --all-targets -- -D warnings | |
| doc: | |
| runs-on: ubuntu-latest | |
| name: doc | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Install X libraries | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install libxft-dev libxinerama-dev lua5.4 liblua5.4-dev | |
| - name: Install 1.88 | |
| uses: dtolnay/[email protected] | |
| - name: cargo doc | |
| run: cargo doc --no-deps --all-features | |
| env: | |
| RUSTDOCFLAGS: --cfg docsrs |