Update to use ResearchSoftwareMetadata package directly #319
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: | |
- dev | |
tags: | |
- 'v*' | |
pull_request: | |
jobs: | |
phylo-tests: | |
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
timeout-minutes: 60 | |
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created | |
actions: write | |
contents: read | |
runs-on: ${{ matrix.os }} | |
continue-on-error: false | |
strategy: | |
matrix: | |
julia-version: | |
- '1.6' | |
- '1' | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
arch: | |
- x64 | |
- arm64 | |
r-testing: | |
- ${{ true }} | |
- ${{ false }} | |
exclude: | |
- os: macOS-latest | |
julia-version: '1.6' | |
arch: arm64 | |
- os: macOS-latest | |
julia-version: '1' | |
arch: x64 | |
- os: ubuntu-latest | |
arch: arm64 | |
- os: windows-latest | |
arch: arm64 | |
- os: ubuntu-latest | |
r-testing: ${{ true }} | |
- os: windows-latest | |
r-testing: ${{ true }} | |
- os: macOS-latest | |
r-testing: ${{ false }} | |
fail-fast: false | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up julia | |
uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.julia-version }} | |
arch: ${{ matrix.arch }} | |
- name: Install R | |
if: ${{ matrix.r-testing }} | |
uses: r-lib/actions/setup-r@v2 | |
- name: Install ape | |
if: ${{ matrix.r-testing }} | |
run: | | |
install.packages("ape", repos="http://cran.r-project.org") | |
shell: R --vanilla --file={0} | |
- name: Cache | |
uses: julia-actions/cache@v2 | |
- name: Build package | |
uses: julia-actions/julia-buildpkg@v1 | |
- name: Running | |
uses: julia-actions/julia-runtest@v1 | |
- name: Process coverage | |
uses: julia-actions/julia-processcoverage@v1 | |
- name: Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true |