Merge pull request #2 from ilovethensa/main #1
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: Build and Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install libcurl-dev | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libcurl4-openssl-dev | |
- name: Make all | |
run: make all | |
- name: Make formats | |
run: make formats | |
- name: Make install | |
run: sudo make install | |
- name: Make check | |
run: make check | |
- name: Make test | |
run: make test |