Triggered by push to refs/heads/dependabot/go_modules/gr25/go_modules-35e3bb0858 by @dependabot[bot] #172
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 |