Update action to use SHA instead of version tag #127
Workflow file for this run
This file contains hidden or 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: [push] | |
| jobs: | |
| mediawiki-extension-action-sqlite: | |
| runs-on: ubuntu-latest | |
| name: Dummy extension test (sqlite) | |
| steps: | |
| # check out the repository | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Test dummy extension | |
| uses: ./ # Uses an action in the root directory | |
| id: extension-test | |
| with: | |
| php: 7.4 | |
| mwbranch: REL1_39 | |
| extension: DummyExtension | |
| mediawiki-extension-action-mysql: | |
| runs-on: ubuntu-latest | |
| name: Dummy extension test (mysql) | |
| steps: | |
| # check out the repository | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Test dummy extension | |
| uses: ./ # Uses an action in the root directory | |
| id: extension-test | |
| with: | |
| php: 7.4 | |
| mwbranch: REL1_39 | |
| extension: DummyExtension | |
| use_mysql: true |