Drop unnecessary checks from the GitHub Actions and try to invoke integration tests

Really looking forward to Otto being self-hosted, but for now this will have to
do!
This commit is contained in:
R Tyler Croy 2020-10-28 19:31:56 -07:00
parent 19dc4d3de2
commit d3a618e071
1 changed files with 2 additions and 8 deletions

View File

@ -13,17 +13,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Run cargo fmt
run: cargo fmt --all -- --check
- name: Build
run: cargo build
- name: Run tests
run: cargo test
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
- name: Run integration tests
run: make test