Release 0.1.2 #10
Workflow file for this run
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: Tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install clib | |
run: | | |
sudo apt-get update | |
sudo apt-get install libcurl4-gnutls-dev valgrind -qq | |
git clone https://github.com/clibs/clib.git /tmp/clib | |
sudo make -C /tmp/clib install | |
- run: clib install | |
- run: make example | |
- run: ./example |