Skip to content

Keep height instead of width in screenshots #56

Keep height instead of width in screenshots

Keep height instead of width in screenshots #56

Workflow file for this run

name: Check for typing/linting/formatting errors
on:
pull_request:
types: [opened, synchronize]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
# This is important to fetch the changes to the previous commit
fetch-depth: 0
- name: Install system dependencies
run: sudo apt-get install -y libgmp-dev libmpfr-dev libmpc-dev
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt, clippy
- name: Check for type errors
run: cargo check
- name: Check for formatting errors
run: cargo fmt --check
- name: Check for linting gerrors
run: cargo clippy