Skip to content

feat: Allow to install default rust packages #316

feat: Allow to install default rust packages

feat: Allow to install default rust packages #316

Workflow file for this run

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
runs-on: ${{ matrix.os }}
steps:
- name: asdf_plugin_test
uses: asdf-vm/actions/plugin-test@v1
with:
command: rustc --version
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup asdf
uses: asdf-vm/actions/setup@v1
- name: Install bats-core
run: |
sudo add-apt-repository universe
sudo apt-get update
sudo apt install bats
- name: Test plugin
run: |
asdf plugin-add rust $GITHUB_WORKSPACE
make test
env:
GITHUB_API_TOKEN: ${{ github.token }}
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install ShellCheck
run: |
sudo add-apt-repository universe
sudo apt-get update
sudo apt install shellcheck
- name: Run ShellCheck
run: make lint
format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install shfmt
run: curl -sS https://webi.sh/shfmt | sh
- name: Run shfmt
run: make fmt-check