chore: make it possible to install older versions of the heroku cli #3
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
on: | |
pull_request: | |
branches: ['*'] | |
push: | |
branches: ['main'] | |
jobs: | |
selfcheck: | |
runs-on: ubuntu-24.04 | |
name: Test Action | |
strategy: | |
matrix: | |
version: [latest, 9.5.1, 10.0.0] | |
steps: | |
# To use this repository's private action, | |
# you must check out the repository | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
version: ${{matrix.version}} | |
lint-with-pre-commit: | |
runs-on: ubuntu-24.04 | |
name: Lint with pre-commit | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- uses: instrumentl/pre-commit-action@v4 |