Correct reference to wrong input array length #2
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: "Pull request > test and build library zip" | |
on: | |
pull_request: | |
branches: [ 'main' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up build environment and dependencies | |
uses: ./.github/actions/setup | |
- name: Compile | |
run: ant compile | |
- name: Run tests | |
run: ant test | |
- name: Build library zip | |
run: ant dist |