Skip to content

Update CODE_OF_CONDUCT.md #194

Update CODE_OF_CONDUCT.md

Update CODE_OF_CONDUCT.md #194

name: build-and-test
on:
push:
branches: [ "main" , "dev"]
pull_request:
branches: [ "main" , "dev"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install toolchain
uses: 0xbillw/install-rust-substrate-action@main
- name: Build
run: cargo build -r --verbose
- name: Run tests
run: cargo test -r --verbose