Skip to content

Update to newest otel and minor refactor #96

Update to newest otel and minor refactor

Update to newest otel and minor refactor #96

Workflow file for this run

name: Checks
on:
pull_request:
push:
branches:
- main
jobs:
license:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Check license headers
run: ./.github/checks/copyright.sh
safety:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Safety checks
run: ./.github/checks/safety.sh -a
unused-deps:
runs-on: ubuntu-latest
steps:
- name: Update deps
run: sudo apt-get update -y
- name: Install deps
run: sudo snap install remarshal
- name: Install deps
run: sudo snap install --classic ripgrep
- uses: actions/checkout@v1
- name: Check for unused dependencies
run: ./.github/checks/deps.sh .
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
components: rustfmt
toolchain: stable
- name: Check Formating
run: cargo fmt --all -- --check
clippy-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: Swatinem/rust-cache@v1
- name: Install deps
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl1.1 protobuf-compiler
- uses: actions-rs/toolchain@v1
with:
profile: minimal
components: clippy
toolchain: stable
- name: Check workflow permissions
id: check_permissions
uses: scherermichael-oss/[email protected]
with:
required-permission: write
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run clippy action to produce annotations
uses: actions-rs/clippy-check@v1
if: steps.check_permissions.outputs.has-permission
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all
- name: Run clippy manually without annotations
if: ${{ !steps.check_permissions.outputs.has-permission }}
run: cargo clippy --all