Main workflow #342
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: Main workflow | |
on: | |
pull_request: | |
push: | |
schedule: | |
- cron: 0 0 * * 5 | |
jobs: | |
plugin_test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
tool: | |
- boundary | |
- consul | |
- levant | |
- nomad | |
- packer | |
- sentinel | |
- serf | |
- terraform | |
- terraform-ls | |
- vault | |
- waypoint | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: asdf_plugin_test | |
uses: asdf-vm/actions/plugin-test@v3 | |
with: | |
command: ${{ matrix.tool }} version | |
plugin: ${{ matrix.tool }} | |
test: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup asdf | |
uses: asdf-vm/actions/setup@v3 | |
- name: Install bats-core | |
run: brew install --build-from-source bats-core | |
- name: Test plugin | |
run: make test | |
env: | |
GITHUB_API_TOKEN: ${{ github.token }} |