fix: improve deployment proxy token flow via factory #6
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: Tests | |
| on: | |
| pull_request: | |
| jobs: | |
| formatting: | |
| name: Code Formatting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: cargo install cargo-make | |
| - run: cargo make fmt | |
| linter: | |
| name: Code Linter | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Libudev | |
| uses: awalsh128/cache-apt-pkgs-action@v1 | |
| with: | |
| packages: libudev-dev | |
| version: 1.0 | |
| - name: Install dependencies | |
| run: cargo install cargo-make cargo-near | |
| - name: Run cargo clippy | |
| run: cargo make clippy | |
| tests: | |
| name: Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Libudev | |
| uses: awalsh128/cache-apt-pkgs-action@v1 | |
| with: | |
| packages: libudev-dev | |
| version: 1.0 | |
| - name: Install dependencies | |
| run: cargo install cargo-make cargo-near | |
| - name: Run cargo test | |
| run: cargo make test |