Update README.md #12
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: Run tests on gdlint workflow | |
on: | |
push: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Test action with defined python version | |
uses: ./ | |
with: | |
directory: test/green | |
python_version: '3.11' | |
- name: Test action with defined gdtoolkit version | |
uses: ./ | |
with: | |
directory: test/green | |
gdtoolkit_version: '4.2.0' | |