fix timestamp query to not be inclusive #238
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: Format | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: format-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
rustfmt: | |
name: rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
components: rustfmt | |
- name: Run rustfmt | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check --verbose | |
tomlfmt: | |
name: tomlfmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@master | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Install tomlfmt | |
uses: actions-rs/[email protected] | |
with: | |
crate: cargo-tomlfmt | |
version: latest | |
use-tool-cache: true | |
- name: Run tomlfmt | |
run: | | |
cargo tomlfmt --dryrun | |
(cd ./lib/evm; cargo tomlfmt --dryrun) | |
(cd ./lib/protocol; cargo tomlfmt --dryrun) | |
(cd ./lib/worker; cargo tomlfmt --dryrun) |