update public date on oracle flaws to be 3rd Tuesday from Apr 2022 #21
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: Run CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
tox: | |
name: Run Tox | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run all envs | |
uses: fedora-python/tox-github-action@main | |
with: | |
tox_env: ${{ matrix.tox_env }} | |
strategy: | |
matrix: | |
tox_env: [black, py36, py37, py38, py39] | |
runs-on: ubuntu-latest |