Create dependabot.yml and update action versions #292
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: Test with conda | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: '*' | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test-conda: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| architecture: [x64] | |
| julia-version: ['1'] | |
| include: | |
| - os: windows-latest | |
| architecture: x86 | |
| julia-version: '1' | |
| fail-fast: false | |
| env: | |
| PYTHON: "" | |
| name: Test | |
| Julia ${{ matrix.julia-version }} | |
| Conda | |
| ${{ matrix.os }} ${{ matrix.architecture }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install libpython2.7 for `find_libpython` test | |
| run: sudo apt-get install python2.7-dev | |
| if: ${{ matrix.python-version != '2.7' && matrix.os == 'ubuntu-latest' }} | |
| - name: Setup julia | |
| uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: ${{ matrix.julia-version }} | |
| arch: ${{ matrix.architecture }} | |
| show-versioninfo: true | |
| - uses: julia-actions/julia-buildpkg@v1 | |
| - uses: julia-actions/julia-runtest@v1 | |
| - uses: julia-actions/julia-processcoverage@v1 | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| files: ./lcov.info | |
| flags: unittests | |
| name: codecov-umbrella |