This cross platform - Linux, Mac OS X and Windows - F# .Net library and smartphone app converts Maya Tzolk’in dates to Gregorian dates and vice versa.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add scripts, publish test results action

+39
+6
.github/workflows/linux_test.yml
··· 90 90 with: 91 91 name: Test Results 92 92 path: ./test_results/*.xml 93 + 94 + - name: Publish Unit Test Results 95 + uses: EnricoMi/publish-unit-test-result-action@v1 96 + if: always() 97 + with: 98 + files: ./test_results/jresult.xml
+6
.github/workflows/osx_test.yml
··· 90 90 with: 91 91 name: Test Results 92 92 path: ./test_results/*.xml 93 + 94 + - name: Publish Unit Test Results 95 + uses: EnricoMi/publish-unit-test-result-action/composite@v1 96 + if: always() 97 + with: 98 + files: ./test_results/jresult.xml
+6
.github/workflows/windows_test.yml
··· 92 92 with: 93 93 name: Test Results 94 94 path: ./test_results/*.xml 95 + 96 + - name: Publish Unit Test Results 97 + uses: EnricoMi/publish-unit-test-result-action/composite@v1 98 + if: always() 99 + with: 100 + files: ./test_results/jresult.xml
+10
run_coverage.sh
··· 1 + #!/bin/bash 2 + # SPDX-License-Identifier: MIT 3 + # Copyright (C) 2021 Roland Csaszar 4 + # 5 + # Project: Tzolkin 6 + # File: run_coverage.sh 7 + # Date: 27.Apr.2021 8 + ############################################################################### 9 + 10 + dotnet test -v n /p:AltCover=true /p:AltCoverReportFormat=OpenCover /p:AltCoverReport=./coverage.xml
+11
run_tests.sh
··· 1 + #!/bin/bash 2 + # SPDX-License-Identifier: MIT 3 + # Copyright (C) 2021 Roland Csaszar 4 + # 5 + # Project: Tzolkin 6 + # File: run_tests.sh 7 + # Date: 27.Apr.2021 8 + ############################################################################### 9 + 10 + dotnet fake run ./build.fsx target publish 11 + dotnet ./bin/TestTzolkin.dll --summary --nunit-summary ./test_results/nresult.xml --junit-summary ./test_results/jresult.xml