up #644
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: lotus-test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - feature-ci-* | |
| pull_request: | |
| branches: | |
| - main | |
| - feature-ci-* | |
| jobs: | |
| lotus-test: | |
| name: lotus-${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ | |
| 'ubuntu-latest', | |
| # 'macos-latest' | |
| # 'windows-latest' | |
| ] | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'adopt-hotspot' | |
| java-version: '17' | |
| cache: 'gradle' | |
| - uses: r-lib/actions/setup-r@v2 | |
| - uses: mamba-org/setup-micromamba@v2 | |
| with: | |
| cache-downloads: true | |
| cache-environment: true | |
| environment-file: environment.yml | |
| create-args: >- | |
| python=3.11 | |
| - name: Create and populate .Renviron file | |
| env: | |
| CROSSREF_EMAIL: ${{ secrets.CROSSREF_EMAIL }} | |
| run: | | |
| touch .Renviron | |
| echo crossref_email="$CROSSREF_EMAIL" >> .Renviron | |
| - name: Run tests | |
| env: | |
| R_REMOTES_NO_ERRORS_FROM_WARNINGS: true | |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
| shell: bash -l {0} | |
| run: | | |
| bash tests/integration_test.sh |