Fix not allowing negative positions after first index correction #36
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: make test windows-latest | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: make TESTOPTS=--windows | |
run: make TESTOPTS=--windows | |
working-directory: ./src | |
- name: perl cmdline_test.pl --windows | |
run: perl cmdline_test.pl --windows | |
working-directory: ./test | |
- name: perl oligotm_test.pl --windows | |
run: perl oligotm_test.pl --windows | |
working-directory: ./test | |
- name: perl dpal_test.pl --windows | |
run: perl dpal_test.pl --windows | |
working-directory: ./test | |
- name: perl thal_test.pl --windows | |
run: perl thal_test.pl --windows | |
working-directory: ./test | |
- name: perl a3test.pl --windows --action | |
run: perl a3test.pl --windows --action | |
working-directory: ./test | |
- name: perl p3test.pl --windows --action | |
run: perl p3test.pl --windows --action | |
working-directory: ./test | |
- name: mkdir results | |
run: mkdir results | |
- name: powershell Compress-Archive src results/build-windows-src.zip | |
run: powershell Compress-Archive src results/build-windows-src.zip | |
- name: powershell Compress-Archive test results/build-windows-test.zip | |
run: powershell Compress-Archive test results/build-windows-test.zip | |
- name: Upload src folder for job 1 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-windows-src.zip | |
path: results/build-windows-src.zip | |
- name: Upload test folder for job 1 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-windows-test.zip | |
path: results/build-windows-test.zip |