feat: add action to install sqruff #3
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: CI for Sqruff CLI Action | |
on: [push, pull_request] | |
jobs: | |
test-action: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Test Install Without Version | |
uses: ./ | |
- name: Test Install Latest Version | |
uses: ./ | |
with: | |
version: 'latest' | |
- name: Test Install Specific Version | |
uses: ./ | |
with: | |
version: 'v0.4.0' | |
- name: Verify Installation | |
run: sqruff --version |