on: push: branches: - main pull_request: branches: - main jobs: tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: rustup component add clippy - uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} args: --all-features - name: Build run: cargo build - name: Run tests run: cargo test integration_tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: toolchain: stable - uses: actions-rs/cargo@v1 with: command: build - uses: actions/setup-go@v2 with: go-version: "1.11.0" - name: Run intetgration tests run: ./integration_test.sh