Skip to content

Commit

Permalink
Merge pull request Pymmdrza#2 from Pymmdrza/CLI-1
Browse files Browse the repository at this point in the history
Update python-publish.yml
  • Loading branch information
Pymmdrza authored Sep 26, 2023
2 parents c3f3d9e + 5f85386 commit 7635145
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
name: Python package
name: Run cryptofuzz command

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
branches:
- main

jobs:
build:

run-command:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: 3.9

- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install pytest
- name: Run tests
run: |
pytest
python -m pip install --upgrade pip
pip install -e .
- name: Run cryptofuzz command
run: cryptofuzz --generate --total 10

0 comments on commit 7635145

Please sign in to comment.