Deprecation notice #30
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: CI | |
on: [ push ] | |
jobs: | |
hello_world_job: | |
runs-on: ubuntu-latest | |
name: Test CLI works | |
steps: | |
# To use this repository's private action, | |
# you must check out the repository | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Test Tinybird CLI, should prompt help | |
uses: ./ # Uses an action in the root directory | |
id: tinybird-action-cli | |
with: | |
token: ${{ secrets.TINYBIRD_TOKEN }} | |
args: "--debug push --push-deps" |