Skip to content

Support Multiple Contract Configurations (#6) #3

Support Multiple Contract Configurations (#6)

Support Multiple Contract Configurations (#6) #3

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Lint
run: |
cargo fmt --check
cargo clippy
- name: Tests
run: cargo test