Removing secrets.GITHUB_TOKEN from description, as it's being rendered #12
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
on: [push, pull_request] | |
name: Main | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Update rustup | |
run: rustup update | |
- name: Compile | |
run: cargo build --release | |
- name: Install cargo-deb | |
run: cargo install cargo-deb | |
- name: Package .deb | |
run: cargo deb | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Update rustup | |
run: rustup update | |
- name: Clippy | |
run: cargo clippy -- -Dwarnings |