CompatHelper: bump compat for DimensionalData to 0.29, (keep existing compat) #167
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
# can add tags if needed | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: '1.10' | |
- name: Install test dependencies | |
run: julia --project=test/ -e 'using Pkg; Pkg.instantiate()' | |
- name: Run tests | |
run: julia --project=. -e 'using Pkg; Pkg.test("NighttimeLights", coverage=true)' | |
- name: Codecov | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV }} | |
run: julia --project=. -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())' |