Skip to content

chore: bump ring from 0.17.11 to 0.17.13 in the cargo group across 1 directory #118

chore: bump ring from 0.17.11 to 0.17.13 in the cargo group across 1 directory

chore: bump ring from 0.17.11 to 0.17.13 in the cargo group across 1 directory #118

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
types:
- opened
- edited
- synchronize
jobs:
pr-title:
runs-on: ubuntu-latest
permissions:
pull-requests: read
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
lint:
runs-on: ubuntu-latest
permissions:
contents: read
statuses: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Run Super-Linter
uses: github/super-linter@v7
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_RUST_2015: false
VALIDATE_RUST_2018: false
VALIDATE_RUST_2021: true
VALIDATE_RUST_CLIPPY: true
RUST_CLIPPY_COMMAND_OPTIONS: "--all-targets --all-features"
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Run Tests
run: |
cargo test --verbose
build:
uses: ./.github/workflows/build.yml