Skip to content

Commit

Permalink
Merge pull request #6 from denBruneBarone/initial-setup
Browse files Browse the repository at this point in the history
Fixed python version for ci
  • Loading branch information
casparemiljensen authored Feb 23, 2024
2 parents acca879 + 93507aa commit 65184b2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.10 # Choose your Python version
python-version: 3.11.0 # Choose your Python version

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim
FROM python:3.11-slim

WORKDIR /code

Expand Down
5 changes: 0 additions & 5 deletions test/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +0,0 @@
import unittest

class TestBasic(unittest.TestCase):
def test_addition(self):
self.assertEqual(1 + 1, 2) # Assert that 1 + 1 equals 2
5 changes: 5 additions & 0 deletions test/basic_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import unittest

class TestBasic(unittest.TestCase):
def test_addition(self):
self.assertEqual(1 + 1, 2) # Assert that 1 + 1 equals 2

0 comments on commit 65184b2

Please sign in to comment.