Rename repo org name 'aelsabbahy' -> 'goss-org' #43
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: plugin test | |
on: | |
pull_request: | |
push: | |
jobs: | |
plugin_test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
goss-version: | |
- 0.3.16 | |
- 0.4.0 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: asdf_plugin_test | |
uses: asdf-vm/actions/plugin-test@v2 | |
with: | |
command: goss --version | |
version: ${{ matrix.goss-version }} | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install shellcheck | |
run: | | |
sudo apt-get update | |
sudo apt-get install shellcheck | |
- name: Run ShellCheck | |
run: make test |