name: Various Sanity Checks on: push: branches: - master pull_request: branches: - master jobs: build: name: Various Sanity Checks runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v1 - name: Set up Ruby 2.x uses: actions/setup-ruby@v1 with: ruby-version: 2.x - name: Set up Rust nightly run: | rustup self update rustup toolchain install nightly --component rustfmt clippy rust-src rustup default nightly cargo install cargo-xbuild - name: Set up Ruby run: | gem install bundler bundle install --retry 3 --without uart - name: Setup misspell run: | curl -L -o ./install-misspell.sh https://git.io/misspell sh ./install-misspell.sh -b ~/bin - name: Run checks run: | bundle exec ruby utils/devtool.rb clippy bundle exec ruby utils/devtool.rb copyright bundle exec ruby utils/devtool.rb fmt_check bundle exec ruby utils/devtool.rb misspell bundle exec ruby utils/devtool.rb rubocop