asdf/.github/workflows/tests.yml

59 lines
1.4 KiB
YAML
Raw Normal View History

name: Tests
on:
push:
branches:
- master
pull_request:
env:
BATS_VERSION: v1.7.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@v2
with:
fetch-depth: 0
- name: Install test dependencies
if: runner.os == 'macos'
2021-11-18 03:05:27 -07:00
run: brew install coreutils fish elvish
- name: Install test dependencies
if: runner.os == 'linux'
run: |
2021-11-18 03:05:27 -07:00
sudo add-apt-repository -y ppa:fish-shell/nightly-master
sudo apt-get update
2021-11-18 03:05:27 -07:00
sudo apt-get -y install fish curl
# Download elvish binary and add to path
curl https://dl.elv.sh/linux-amd64/elvish-v0.18.0.tar.gz -o elvish-v0.18.0.tar.gz
tar xzf elvish-v0.18.0.tar.gz
rm elvish-v0.18.0.tar.gz
2021-11-18 03:05:27 -07:00
mkdir -p "$HOME/bin"
mv elvish-v0.18.0 "$HOME/bin/elvish"
2021-11-18 03:05:27 -07:00
echo "$HOME/bin" >>"$GITHUB_PATH"
- name: Install bats
run: |
git clone --depth 1 --branch "${{ env.BATS_VERSION }}" 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 }}