Remove cargokit_options.yaml
since it seems to not work
#18
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 ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
fmt: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Check | |
run: bash contrib/scripts/check-fmt.sh check | |
check-crate: | |
name: Check crate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Flutter | |
uses: subosito/flutter-action@v2 | |
- name: Get Flutter deps | |
run: flutter pub get | |
- name: Check | |
run: bash contrib/scripts/check-crate.sh | |
# check-flutter: | |
# name: Check flutter | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v3 | |
# | |
# - name: Install Flutter | |
# uses: subosito/flutter-action@v2 | |
# | |
# - name: Get Flutter deps | |
# run: flutter pub get | |
# | |
# - name: Check | |
# run: bash contrib/scripts/check-flutter.sh |