fix: CI error #4
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: Build | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
jobs: | ||
plugin_test: | ||
name: asdf plugin test | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Install Ubuntu deps | ||
run: sudo apt-get install libxcb1-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev | ||
if: ${{ matrix.os == "ubuntu-latest" }} | ||
Check failure on line 21 in .github/workflows/build.yml GitHub Actions / BuildInvalid workflow file
|
||
- name: asdf_plugin_test | ||
uses: asdf-vm/actions/plugin-test@v3 | ||
with: | ||
command: jless -V |