Bump to libucl 0.9.1 #32
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: CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: crystallang/crystal:1.10.0 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install dev packages | |
run: apt-get update && apt-get install -y build-essential automake autoconf libtool | |
- name: Build vendored libucl | |
run: make libucl | |
- name: Run tests | |
run: make spec |