bump deps #11
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: Execute CI tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: ~ | |
| jobs: | |
| test-smoke: | |
| name: Run smoke tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install the project for test environment | |
| run: make test-install | |
| - name: Run smoke tests | |
| run: make test-smoke | |
| test-functional: | |
| name: Run functional tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install the project for test environment | |
| run: make test-install | |
| - name: Run functional tests | |
| run: make test-functional |