Add sunrise / sunset calculation using SPA algorithm #38
Workflow file for this run
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: Benchmark PR | |
| on: | |
| pull_request_target: | |
| branches: [main] | |
| permissions: | |
| pull-requests: write # needed to post comments | |
| jobs: | |
| bench: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| julia-version: ["lts", "1", "pre"] | |
| steps: | |
| - uses: MilesCranmer/AirspeedVelocity.jl@action-v1 | |
| with: | |
| julia-version: ${{ matrix.julia-version }} | |
| exeflags: "--threads=auto" | |
| extra-pkgs: "CondaPkg,PythonCall" |