chore: upped minimum rust version #106
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: build | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Prepare | |
run: | | |
rustup toolchain install 1.70.0 --force | |
rustup override set 1.70.0 | |
sudo chmod +x scripts/build_examples.sh | |
- name: Build | |
run: cargo build --verbose | |
- name: Build Examples | |
run: scripts/build_examples.sh | |
- name: Test | |
run: cargo test --verbose | |
- name: Lint | |
run: | | |
rustup override unset | |
rustup component add clippy | |
cargo clippy | |
cd ./telexide_proc_macros | |
cargo clippy |