Skip to content

Commit

Permalink
Adding Github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
josdem committed Apr 29, 2024
1 parent 35f4bca commit 0c88041
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Creating logger
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11.9'
run: python -m unittest discover ${{ github.workspace }} -s tests

0 comments on commit 0c88041

Please sign in to comment.