add printing and saving of autocorrelation functions #386
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: Test | |
on: | |
push: | |
branches: | |
- 'master' | |
permissions: | |
contents: write | |
jobs: | |
test_linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download Zig Compiler | |
run: mkdir bin && wget -O zig.tar.xz https://ziglang.org/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz && tar -xvf zig.tar.xz && mv zig-linux*/lib zig-linux*/zig bin && rm -rf zig* | |
- name: Run Tests | |
run: ./bin/zig build --release=fast --summary all test | |
- name: Upload Coverage Reports | |
uses: codecov/codecov-action@v4.0.1 | |
with: | |
token: ${{secrets.CODECOV_TOKEN}} |