mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 09:38:16 -07:00
59 lines
1.6 KiB
YAML
59 lines
1.6 KiB
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
env:
|
|
ELVISH_VERSION: v0.18.0
|
|
|
|
jobs:
|
|
nix:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- macos-10.15
|
|
- macos-11
|
|
- macos-12
|
|
- ubuntu-18.04
|
|
- ubuntu-20.04
|
|
- ubuntu-22.04
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install test dependencies
|
|
if: runner.os == 'macos'
|
|
run: brew install coreutils fish elvish
|
|
|
|
- name: Install test dependencies
|
|
if: runner.os == 'linux'
|
|
run: |
|
|
sudo add-apt-repository -y ppa:fish-shell/nightly-master
|
|
sudo apt-get update
|
|
sudo apt-get -y install fish curl
|
|
|
|
# Download elvish binary and add to path
|
|
curl https://dl.elv.sh/linux-amd64/elvish-${{ env.ELVISH_VERSION }}.tar.gz -o elvish-${{ env.ELVISH_VERSION }}.tar.gz
|
|
tar xzf elvish-${{ env.ELVISH_VERSION }}.tar.gz
|
|
rm elvish-${{ env.ELVISH_VERSION }}.tar.gz
|
|
mkdir -p "$HOME/bin"
|
|
mv elvish-${{ env.ELVISH_VERSION }} "$HOME/bin/elvish"
|
|
echo "$HOME/bin" >>"$GITHUB_PATH"
|
|
|
|
- name: Install bats
|
|
run: |
|
|
git clone --depth 1 --branch "v$(grep -Eo "^\\s*bats\\s*.*$" ".tool-versions" | cut -d ' ' -f2-)" https://github.com/bats-core/bats-core.git $HOME/bats-core
|
|
echo "$HOME/bats-core/bin" >>"$GITHUB_PATH"
|
|
|
|
- name: Run tests
|
|
run: bats test
|
|
env:
|
|
GITHUB_API_TOKEN: ${{ github.token }}
|