Skip to content

Commit

Permalink
Merge branch 'project_files'
Browse files Browse the repository at this point in the history
  • Loading branch information
pnsaevik committed Jan 12, 2024
2 parents 94a561f + b922e73 commit a5bf42e
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Test workflow

on: push

jobs:
unit_test_job:
runs-on: ubuntu-latest
name: Run unit tests
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install package
run: pip install .
- name: Install pytest
run: pip install pytest
- name: Run unit tests
run: pytest
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

All notable changes to the project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.0] - 2024-01-12
### Added
- Initial project files
14 changes: 14 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "adepoplan_backend"
dynamic = ["version"]

[tool.setuptools.dynamic]
version = {attr = "adepoplan_backend.__version__"}

[tool.pytest.ini_options]
minversion = 6.0
testpaths = ["tests"]
1 change: 1 addition & 0 deletions src/adepoplan_backend/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "1.0.0"
2 changes: 2 additions & 0 deletions tests/test_adepoplan.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def test_dummy():
pass

0 comments on commit a5bf42e

Please sign in to comment.