Skip to content

Bump scudo-standalone to 18.1.8 #7

Bump scudo-standalone to 18.1.8

Bump scudo-standalone to 18.1.8 #7

Workflow file for this run

on:
push:
branches:
- "main"
pull_request:
name: check
jobs:
fmt:
runs-on: ubuntu-latest
name: Check
permissions:
checks: write
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt
- name: cargo fmt --check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --check
- name: cargo clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
test:
runs-on: ubuntu-latest
name: Run test suite
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install nightly
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
default: true
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features
- name: Run abort tests
run: ./abort_tests.sh