Bump cryptography from 48.0.1 to 50.0.0 (#151) #115
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: pytest-no-midoss | |
| # Run test suit in an environment that does not include the packages that are needed only | |
| # in the midoss namespace. This tests exceptions and messages to direct user to create | |
| # the appropriate conda environment. Test coverage is not reported from this workflow | |
| # because many tests are skipped. | |
| on: | |
| push: | |
| branches: [ '*' ] | |
| # Enable workflow to be triggered from GitHub CLI, browser, or via API | |
| # primarily for testing conda env solution for new Python versions | |
| workflow_dispatch: | |
| jobs: | |
| pytest-no-midoss: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| environment: [ 'test-py312-no-midoss', 'test-py313-no-midoss', 'test-py314-no-midoss' ] | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Set up Pixi | |
| uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f | |
| with: | |
| cache: true | |
| environments: ${{ matrix.environment }} | |
| - name: Run pytest | |
| run: pixi run -e ${{ matrix.environment }} pytest-no-midoss | |
| # Test coverage is not reported from this workflow because many tests are skipped. |