Skip to content

Bump termion from 1.5.6 to 2.0.3 #10

Bump termion from 1.5.6 to 2.0.3

Bump termion from 1.5.6 to 2.0.3 #10

Workflow file for this run

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "**" ]
name: Continuous Integration
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- name: Format
if: ${{ matrix.rust == 'nightly' }}
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Build project
uses: actions-rs/cargo@v1
with:
command: build
- name: Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
- name: Test
uses: actions-rs/cargo@v1
with:
command: test