mirror of
https://github.com/mozilla/cipherscan.git
synced 2025-03-12 00:53:39 +01:00
Add test runs on GitHub Actions
This commit is contained in:
parent
5866911b62
commit
d84b4bb23d
27
.github/workflows/test.yml
vendored
Normal file
27
.github/workflows/test.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
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
|
@ -1,4 +0,0 @@
|
||||
dist: trusty
|
||||
language: python
|
||||
script:
|
||||
- ./cipherscan google.com
|
@ -1,7 +1,7 @@
|
||||
CipherScan
|
||||
==========
|
||||
|
||||
[](https://travis-ci.org/mozilla/cipherscan)
|
||||
[](https://github.com/mozilla/cipherscan/actions/workflows/test.yml)
|
||||
|
||||

|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user