Use GAT instead of macros and traits #119
This file contains hidden or 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: Main | |
on: | |
pull_request: | |
branches: | |
- master | |
env: | |
RUST_BACKTRACE: 1 | |
jobs: | |
build_test: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v1 | |
- name: Install nightly Rust and rustfmt | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly-2024-07-07 | |
components: rustfmt | |
- name: Install cargo-make | |
uses: davidB/rust-cargo-make@v1 | |
- name: Run tests | |
run: cargo make --no-workspace verify_only | |
working-directory: ./ |