312: introduce remote container development environment #893
Workflow file for this run
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: Lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- run: rustup component add clippy | |
- uses: bufbuild/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions-rs/clippy-check@v1 | |
name: Lint main workspace | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: workspace | |
args: --all-features --no-deps | |
- uses: actions-rs/clippy-check@v1 | |
name: Lint xmtpv3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: xmtp | |
args: --all-features --no-deps --manifest-path xmtp/Cargo.toml |