feat(release): Replace release bot with GH app #168
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release/** | |
| pull_request: | |
| jobs: | |
| lint: | |
| name: "Linting" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| name: Checkout code | |
| - name: Run linter | |
| run: | | |
| make lint | |
| test: | |
| name: "Tests" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| name: Checkout code | |
| - name: Run tests | |
| run: | | |
| make test | |
| library: | |
| name: "Library-only build" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| name: Checkout code | |
| - name: Run tests | |
| run: cargo build --no-default-features --lib --features cadence |