Skip to content

feat: run for higher epoch_limit #4

feat: run for higher epoch_limit

feat: run for higher epoch_limit #4

name: Build-Test-Fmt
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-test-fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build
- name: Test
run: cargo test
- name: Fmt
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy -- --deny warnings