Skip to content

Bump magnus from 0.5.4 to 0.6.1 #45

Bump magnus from 0.5.4 to 0.6.1

Bump magnus from 0.5.4 to 0.6.1 #45

Workflow file for this run

name: Linting
on:
pull_request:
jobs:
ruby:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: yettoapp/actions/setup-languages@main
with:
ruby: true
- name: Rubocop
run: bundle exec rake rubocop
clippy_format:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Obtain Rust
run: rustup override set ${{ matrix.rust }}
- name: Check clippy
run: rustup component add clippy && cargo clippy
- name: Check formatting
run: rustup component add rustfmt && cargo fmt -- --check