Add polygons to draw filled polygons #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push, pull_request] | |
jobs: | |
ubuntu_test: | |
name: Ubuntu tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Install Rust | |
run: | | |
rustup toolchain install nightly | |
rustup default nightly | |
rustup component add rustfmt --toolchain nightly-x86_64-unknown-linux-gnu | |
- name: Setup | |
run: | | |
sudo apt-get install python3-pip --force-yes | |
sudo pip3 install toml | |
sudo apt-get install gnuplot | |
- name: Tests | |
run: | | |
./cargo_util.py --test | |
./gnuplot/target/debug/examples/example1 --no-show | |
./gnuplot/target/debug/examples/example2 --no-show | |
./gnuplot/target/debug/examples/example3 --no-show | |
./gnuplot/target/debug/examples/example4 --no-show |