fix(config): drop get queue url in favor of simple-async-tasks version #179
Workflow file for this run
This file contains 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: test | |
on: | |
workflow_call: | |
push: | |
branches-ignore: | |
- 'main' # exclude main branch, since deploy workflow triggers on main, and calls the test workflow inside of it already | |
tags-ignore: | |
- v* # exclude tags, since deploy workflow triggers on tags, and calls the test workflow inside of it already | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} # per [workflow] x [branch, tag] | |
cancel-in-progress: true # cancel workflows for non-latest commits | |
jobs: | |
suite: | |
uses: ./.github/workflows/.test.yml |