Skip to content

Commit

Permalink
Replace demo file with tox runner
Browse files Browse the repository at this point in the history
  • Loading branch information
sybrenstuvel committed Apr 23, 2023
1 parent d16f059 commit 43ba2ab
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 18 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/github-actions-demo.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/tests.yml
@@ -0,0 +1,25 @@
name: Test Python-RSA

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run tox
# Run tox using the version of Python in `PATH`
run: tox -e py

0 comments on commit 43ba2ab

Please sign in to comment.