Removed support for IEC/IIDC. #24
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: Build Open1722 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt update && sudo apt install -y meson libcmocka0 libcmocka-dev lcov | |
- name: Run build_all.sh script | |
run: ./build_all.sh | |
- name: Run test_all.sh | |
run: ./test_all.sh |