Skip to content

Update dependencies #1137

Update dependencies

Update dependencies #1137

Workflow file for this run

name: CI Linux
"on":
push:
pull_request:
types: [opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
container:
image: debian:testing
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 xauth
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build --verbose
- name: Run tests
run: xvfb-run cargo test --verbose -- --nocapture
env:
RUST_BACKTRACE: 1