Skip to content

Run CI tests in a container #1002

Run CI tests in a container

Run CI tests in a container #1002

Workflow file for this run

name: Code check
"on":
push:
pull_request:
types: [opened, reopened]
jobs:
clippy:
runs-on: ubuntu-latest
container:
image: debian:latest
steps:
- name: Install dependencies
run: |
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y --no-install-recommends build-essential curl ca-certificates libssl-dev libgtk-4-dev xvfb
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo clippy --all-targets --all-features