Skip to content

Introduce unit 'dst' and fix values of 'st' and 'dst'. #50

Introduce unit 'dst' and fix values of 'st' and 'dst'.

Introduce unit 'dst' and fix values of 'st' and 'dst'. #50

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
rust: [stable]
steps:
- run: sudo apt-get install libcairo2-dev libpango1.0-dev
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
# - if: matrix.rust == 'stable'
# run: rustup component add clippy
# - if: matrix.rust == 'stable'
# run: cargo clippy -- -D warnings
- run: cargo build --verbose --locked
# - run: cargo test --verbose