Merge pull request #123 from bxparks/develop #806
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
# See https://docs.github.com/en/actions/guides for documentation about GitHub | |
# Actions. | |
name: AUnit Tests | |
# Run on all branches. | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup | |
run: | | |
sudo apt update | |
sudo apt install -y libcurl4-openssl-dev | |
cd .. | |
git clone --depth 1 https://github.com/HowardHinnant/date | |
git clone --depth 1 https://github.com/bxparks/EpoxyDuino | |
git clone --depth 1 https://github.com/bxparks/AceRoutine | |
git clone --depth 1 https://github.com/bxparks/AUnit | |
git clone --depth 1 https://github.com/bxparks/AceCommon | |
git clone --depth 1 https://github.com/bxparks/AceWire | |
git clone --depth 1 https://github.com/bxparks/AceSorting | |
- name: Verify examples | |
run: | | |
make -C examples | |
make -C examples/MemoryBenchmark epoxy | |
- name: Verify tests | |
run: | | |
make -C tests | |
make -C tests runtests |