chore(clib.json): 0.2.0 #7
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: | |
linux: | |
name: Linux | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: System Setup | |
shell: bash | |
run: | | |
sudo apt install -qq libcurl4-gnutls-dev | |
- name: Run Tests | |
run: | | |
make | |
make test | |
macos: | |
name: macOS | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: System Setup | |
shell: bash | |
run: | | |
: # noop | |
- name: Run Tests | |
run: | | |
make | |
make test |