checks if schema exists and displays message #20
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: main | |
# | |
# on: | |
# push: | |
# branches: [ main ] | |
# | |
# env: | |
# CARGO_TERM_COLOR: always | |
# | |
# jobs: | |
# build_and_test: | |
# name: Rust project | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# | |
# - uses: Swatinem/rust-cache@v2 | |
# | |
# - name: setup toolchain | |
# uses: hecrj/setup-rust-action@v1 | |
# with: | |
# rust-version: stable | |
# | |
# - name: cargo test | |
# run: cargo test --all-features | |
# | |
# - name: clippy | |
# run: cargo clippy --all --all-features --tests -- -D warnings |