Skip to content

Replace tidal doctor with analyze code for main action #54

Replace tidal doctor with analyze code for main action

Replace tidal doctor with analyze code for main action #54

Workflow file for this run

on: [push]
jobs:
doctor:
runs-on: ubuntu-latest
name: A job to run tidal doctor
steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v4
- name: Tidal Doctor action step
uses: ./doctor
with:
tidal-email: '${{ secrets.TIDAL_EMAIL }}'
tidal-url: '${{ secrets.TIDAL_URL }}'
tidal-password: '${{ secrets.TIDAL_PASSWORD }}'
id: hello
ping:
runs-on: ubuntu-latest
name: A job to run tidal ping
steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v4
- name: Tidal Ping action step
uses: ./ping
with:
tidal-email: '${{ secrets.TIDAL_EMAIL }}'
tidal-url: '${{ secrets.TIDAL_URL }}'
tidal-password: '${{ secrets.TIDAL_PASSWORD }}'
analyze-code:
runs-on: ubuntu-latest
name: A job to validate analyze code
steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v4
- name: Tidal Doctor action step
uses: ./ # Uses an action in the root directory
with:
tidal-email: '${{ secrets.TIDAL_EMAIL }}'
tidal-url: '${{ secrets.TIDAL_URL }}'
tidal-password: '${{ secrets.TIDAL_PASSWORD }}'
app-id: '66'