Update Rust crate libc to v0.2.168 #1607
This file contains 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
on: [pull_request] | |
name: PR | |
jobs: | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup Docker | |
uses: ./.github/actions/docker-setup | |
- name: Run tests | |
run: make test | |
format: | |
name: format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup Docker | |
uses: ./.github/actions/docker-setup | |
- name: Run formatting | |
run: make format | |
docs: | |
name: docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup Docker | |
uses: ./.github/actions/docker-setup | |
- name: Run doc generation | |
run: make docs | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup Docker | |
uses: ./.github/actions/docker-setup | |
- name: Run linting | |
run: make lint | |
build-linux-only-crates: | |
name: build-linux-only-crates | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup Docker | |
uses: ./.github/actions/docker-setup | |
- name: Run build-linux-only | |
run: make build-linux-only |