Triggered by push to refs/heads/dependabot/npm_and_yarn/dashboard/npm_and_yarn-3c3c744ce7 by @dependabot[bot] #174
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: query | |
| run-name: Triggered by ${{ github.event_name }} to ${{ github.ref }} by @${{ github.actor }} | |
| on: [push] | |
| jobs: | |
| query: | |
| runs-on: ubuntu-latest | |
| name: unit | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.11" | |
| - name: Install Poetry | |
| uses: snok/install-poetry@v1 | |
| with: | |
| version: 2.0.0 | |
| - name: Run Unit Tests | |
| run: | | |
| cd query | |
| make test |