Skip to content

Merge pull request #22 from EspressoSystems/dependabot/github_actions… #79

Merge pull request #22 from EspressoSystems/dependabot/github_actions…

Merge pull request #22 from EspressoSystems/dependabot/github_actions… #79

Workflow file for this run

name: Ubuntu Build
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
- '*/*'
- 'update_flake_lock_action'
schedule:
- cron: '0 0 * * 1'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Format
run: |
cargo fmt -- --check
- name: Build
run: |
cargo build --all-targets --workspace --all-features --release
- name: Test
run: |
cargo test --release --all-targets --workspace --all-features
- name: Lint
run: |
cargo clippy --workspace --all-targets --all-features --bins --tests --examples -- -D warnings