docs: updating README with correct v7 usage #966
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: Continuous Integration (CI) | |
| on: pull_request | |
| permissions: | |
| contents: read | |
| jobs: | |
| formatting: | |
| name: Formatting | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| language: [rust, shell, python] | |
| steps: | |
| - name: Checkout code. | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Check formatting. | |
| run: make check-${{ matrix.language }}-formatting | |
| linting: | |
| name: Linting | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| language: [rust] | |
| steps: | |
| - name: Checkout code. | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Check linting. | |
| run: make check-${{ matrix.language }}-linting | |
| compile: | |
| name: Compile | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code. | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Compile. | |
| run: make compile | |
| unit-test: | |
| name: Unit Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code. | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Unit test. | |
| run: make unit-test | |
| end-to-end-test: | |
| name: End to End Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code. | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: End to End test. | |
| run: make end-to-end-test |