Set up workspace, add formatting CI. #1
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: Check | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| tags: | |
| - 'v*' | |
| pull_request: | |
| env: | |
| QT_VERSION: 6.7.3 | |
| jobs: | |
| Build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Qt | |
| uses: ./.github/actions/setup-qt | |
| with: | |
| qt-version: ${{ env.QT_VERSION }} | |
| - name: Build libclide | |
| run: | | |
| cargo b -p libclide --release | |
| - name: Build clide | |
| run: | | |
| cargo b --release | |
| Test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Qt | |
| uses: ./.github/actions/setup-qt | |
| with: | |
| qt-version: ${{ env.QT_VERSION }} | |
| - name: Test libclide | |
| run: | | |
| cargo test -p libclide | |
| - name: Test clide | |
| run: | | |
| cargo test | |
| Lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Qt | |
| uses: ./.github/actions/setup-qt | |
| with: | |
| qt-version: ${{ env.QT_VERSION }} | |
| - name: Lint libclide | |
| run: | | |
| cargo clippy -p libclide -- -D warnings | |
| - name: Lint clide | |
| run: | | |
| cargo clippy -- -D warnings | |
| Format: | |
| name: Format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Qt | |
| uses: ./.github/actions/setup-qt | |
| with: | |
| qt-version: ${{ env.QT_VERSION }} | |
| - name: Format libclide | |
| run: | | |
| cargo fmt -p libclide --verbose -- --check | |
| - name: Format clide | |
| run: | | |
| cargo fmt --verbose -- --check |