[pull] master from ElrondNetwork:master #47
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
permissions: | |
checks: write | |
pull-requests: write | |
jobs: | |
template_test_current: | |
name: Plotter tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: 1.82 | |
target: wasm32-unknown-unknown | |
- name: Prerequisites | |
run: | | |
sudo apt install pkg-config libfreetype6-dev libfontconfig1-dev | |
- name: Run plotter tests | |
run: | | |
cd tools/plotter | |
cargo test |