zls/.github/workflows/main.yml
SuperAuguste 98176db5a4 ci fix?
2020-05-14 09:57:19 -04:00

28 lines
717 B
YAML

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install software
run: |
ZIG=$(wget --quiet --output-document=- https://ziglang.org/download/index.json | jq --raw-output '.master."x86_64-linux".tarball')
echo installing $ZIG into ./zig/
wget --quiet --output-document=- $ZIG | tar Jx
mv zig-linux-x86_64-* zig
echo zig version $(./zig/zig version)
- name: build
run: |
export PATH=./zig:$PATH
zig build
FILE=zig-cache/bin/zls
if test -f "$FILE"; then
exit 0
else
exit 1
fi