Skip to content

Bump regex from 0.2.11 to 1.9.1 in /examples (#78) #275

Bump regex from 0.2.11 to 1.9.1 in /examples (#78)

Bump regex from 0.2.11 to 1.9.1 in /examples (#78) #275

Workflow file for this run

name: Build and Checks
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
checks:
if: github.repository_owner == 'viamrobotics'
runs-on: [self-hosted, x64]
container:
image: ghcr.io/viamrobotics/canon:amd64
steps:
- name: Checkout PR/Push/Workflow Dispatch
uses: actions/checkout@v2
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
- name: Run Clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
- name: Build
uses: actions-rs/cargo@v1
with:
command: build