Skip to content

Add support for Google Chrome Canary #180

Add support for Google Chrome Canary

Add support for Google Chrome Canary #180

Workflow file for this run

name: Rust
on:
push:
pull_request:
branches: [main]
permissions: { }
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: rustfmt
run: cargo fmt -- --check
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Clippy
run: cargo clippy -- -D warnings