420 change github workflow to run test with feature flags #2
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: Test Benchmark | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test-code: | |
runs-on: ubuntu-latest | |
env: | |
# Make sure CI fails on all warnings, including Clippy lints | |
RUSTFLAGS: "-Dwarnings" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/shared | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Test For runtime benchmarks | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --features=runtime-benchmarks,try-runtime |