remove unneeded features from image crate #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: Install Rust for Xtensa | |
uses: esp-rs/[email protected] | |
with: | |
default: true | |
ldproxy: true | |
- name: copy config | |
run: cp cfg.toml.example cfg.toml | |
- name: Run cargo check | |
run: cargo check --bins --examples |