Skip to content

Correct tmp download dir #19

Correct tmp download dir

Correct tmp download dir #19

Workflow file for this run

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: assume --version; granted --version
env:
GITHUB_TOKEN: ${{ github.token }}
macos:
runs-on: macos-latest
steps:
- name: Preinstall
run: brew install jq
- name: Test plugin
uses: asdf-vm/actions/plugin-test@v1
with:
command: assume --version; granted --version
env:
GITHUB_TOKEN: ${{ github.token }}