Skip to content

Initial sealable trie implementation #1

Initial sealable trie implementation

Initial sealable trie implementation #1

Workflow file for this run

---
name: PR Checks
on:
pull_request:
branches:
- '*'
push:
branches:
- master
jobs:
format:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: echo "date=$(date -d '1 month ago' +'%Y-%m-%d')" >> $GITHUB_ENV
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-${{ env.date }}
components: rustfmt deny
- name: Check Formatting
uses: LoliGothick/rustfmt-check@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
toolchain: nightly-${{ env.date }}
flags: --all
miri:
name: Miri tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: echo "date=$(date -d '1 month ago' +'%Y-%m-%d')" >> $GITHUB_ENV
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-${{ env.date }}
components: rustfmt miri
- name: Test with Miri
run: cargo miri test