Add support for Ports of Type void #724
This file contains hidden or 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: Continuous Integration | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| formating: | |
| name: formatting | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Install deps | |
| run: | | |
| sudo apt-get install pipx -y | |
| sudo pipx install clang-format==19.1.5 | |
| sudo pipx install clang-tidy | |
| - name: Setup java and gradle for compiling lfc | |
| uses: ./.github/actions/lingua-franca | |
| - name: Runtime format check | |
| run: | | |
| clang-format --version | |
| make format-check | |
| - name: LFC format check | |
| run: cd lfc && ./gradlew spotlessCheck |