Sign out other sessions of user on password change #590
Workflow file for this run
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: Pull Request | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
node: | |
uses: nasa-gcn/.github/.github/workflows/node.yml@main | |
python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: psf/black@stable | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Pip Install | |
run: pip install -r requirements.txt | |
- name: Pytest | |
run: pytest python | |
- name: MyPy | |
run: mypy python | |
- name: Upload to Codecov.io | |
uses: codecov/codecov-action@v3 |