Skip to content

Use authorize_upgrade on Relay Chains #102

Use authorize_upgrade on Relay Chains

Use authorize_upgrade on Relay Chains #102

Workflow file for this run

name: Rust
# Cancel a currently running workflow from the same PR, branch or tag when a new workflow is
# triggered (ref https://stackoverflow.com/a/72408109)
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
env:
CARGO_TERM_COLOR: always
TOOLCHAIN_LINT: nightly-2023-11-13
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
env:
SKIP_WASM_BUILD: 1
run: cargo build --verbose
lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Free Disk Space
uses: jlumbroso/[email protected]
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false
# all of these default to true, but feel free to set to
# "false" if necessary for your workflow
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: false
- name: Increase swap
run: |
sudo swapoff -a
sudo fallocate -l 16G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon --show
- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.TOOLCHAIN_LINT }}
components: rustfmt, clippy, rust-src
override: true
- name: Fmt
run: cargo +${{ env.TOOLCHAIN_LINT }} fmt --all -- --check
- name: Clippy
env:
SKIP_WASM_BUILD: 1
uses: actions-rs-plus/clippy-check@v2
with:
toolchain: ${{ env.TOOLCHAIN_LINT }}
args: --all-targets --all-features -- -D warnings
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run tests
run: cargo test --verbose