linestring 0.16.0

line string toolbox
Documentation
name: Rust

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
      - name: Download deps
        run: sudo apt-get update && sudo apt-get install -y libpango1.0-dev libx11-dev libxext-dev libxft-dev libxinerama-dev libxcursor-dev libxrender-dev libxfixes-dev
      - uses: actions/checkout@v3
      - name: install stable
        run: rustup toolchain install stable --component rustfmt,clippy --allow-downgrade
      - name: Run clippy
        run: cargo clippy-all
      - name: Run tests
        run: cargo test-all