Bump pyasn1 from 0.6.1 to 0.6.2 #1165
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: Tests | |
| on: [push] | |
| jobs: | |
| lint-and-format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: "uv.lock" | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| cache-dependency-path: 'public/mobile-app/package-lock.json' | |
| - name: Install dependencies | |
| working-directory: ./public/mobile-app | |
| run: npm ci | |
| - run: make lint-and-format | |
| run-tests: | |
| name: python | |
| runs-on: ubuntu-latest | |
| needs: [lint-and-format] | |
| services: | |
| postgres: | |
| image: postgres:15 | |
| env: | |
| POSTGRES_PASSWORD: some_password | |
| POSTGRES_DB: postgres_test | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| ports: | |
| - 5432:5432 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: "uv.lock" | |
| - name: "Set up Python" | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version-file: "pyproject.toml" | |
| - name: Install the project | |
| run: uv sync --locked --all-extras --dev | |
| - name: Create .env file | |
| run: | | |
| echo "AUTH_COOKIE_JWT_SECRET=\"secret\"" >> .env.local | |
| echo "PARTNERS_PSL_SECRET=\"secret\"" >> .env.local | |
| - name: Run tests | |
| run: make test | |
| mobile-app-tests: | |
| name: mobile-app | |
| runs-on: ubuntu-latest | |
| needs: [lint-and-format] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| cache-dependency-path: 'public/mobile-app/package-lock.json' | |
| - name: Install dependencies | |
| working-directory: ./public/mobile-app | |
| run: npm ci | |
| - name: Create .env file | |
| run: | | |
| echo "AUTH_COOKIE_JWT_SECRET=\"secret\"" >> .env.local | |
| echo "PARTNERS_PSL_SECRET=\"secret\"" >> .env.local | |
| - name: Install Playwright Browsers | |
| working-directory: ./public/mobile-app | |
| run: npx playwright install --with-deps | |
| - name: Run tests | |
| working-directory: ./public/mobile-app | |
| run: npm test |