Bump ionia from 5dcc3e1
to fe4cd5a
(#16)
#89
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: Workflow - Pull Request | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [aptos] | |
push: | |
branches: [aptos] | |
jobs: | |
linters: | |
name: Run linters | |
uses: ./.github/workflows/linters.yml | |
rust_build: | |
name: Build Rust project | |
uses: ./.github/workflows/rust-build.yml | |
linters_cargo: | |
name: Run Cargo linters | |
uses: ./.github/workflows/linters-cargo.yml | |
coverage: | |
name: Run coverage | |
uses: ./.github/workflows/coverage.yml | |
needs: rust_build |