mirror of
https://github.com/mozilla/cipherscan.git
synced 2025-04-21 01:03:39 +02:00
28 lines
541 B
YAML
28 lines
541 B
YAML
name: cipherscan
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.8", "3.10", "3.12"]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Test Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install
|
|
run: |
|
|
python -m pip install six
|
|
- name: Scan
|
|
run: |
|
|
./cipherscan example.org
|