Skip to content

Commit

Permalink
trying gh test now
Browse files Browse the repository at this point in the history
  • Loading branch information
enzbus committed Apr 23, 2024
1 parent 165cf59 commit 80aaeea
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Test

on:

push:
branches:
- master

pull_request:
branches:
- master

jobs:

pylint:

packaging:

runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'

- name: Package
run: |
python -m pip install build
python -m build
- name: Install wheel
run: |
python -m pip install dist/*.whl
- name: Delete the repo
run: |
rm -rf *
- name: Run tests shipped with the package
run: |
python -m project_euromir.tests

0 comments on commit 80aaeea

Please sign in to comment.