Disable debug mode #17
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: CI | |
permissions: {} | |
on: | |
workflow_dispatch: {} | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
- LICENSE | |
push: | |
paths-ignore: | |
- "**.md" | |
- LICENSE | |
jobs: | |
ubuntu: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- container: alpine:latest | |
preinstall: apk add bash coreutils curl git jq | |
- container: centos:latest | |
preinstall: dnf -y --disablerepo '*' --enablerepo=extras swap centos-linux-repos centos-stream-repos && dnf -y install git jq | |
- container: ubuntu:latest | |
preinstall: apt-get -y update && apt-get -y install curl git jq | |
runs-on: ubuntu-latest | |
container: | |
image: ${{ matrix.container }} | |
steps: | |
- name: Preinstall | |
run: ${{ matrix.preinstall }} | |
- name: Test plugin | |
uses: asdf-vm/actions/plugin-test@v1 | |
with: | |
command: gcrane version | |
macos: | |
runs-on: macos-latest | |
steps: | |
- name: Preinstall | |
run: brew install jq | |
- name: Test plugin | |
uses: asdf-vm/actions/plugin-test@v1 | |
with: | |
command: gcrane version |