Skip to content
Snippets Groups Projects
Unverified Commit b7ef0a39 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

add GitHub Actions

parent e9785250
No related branches found
No related tags found
No related merge requests found
name: CI
run-name: ${{ github.actor }}
on: [ push ]
jobs:
tests:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@main
- uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install everything
run: |
sudo apt-get update
sudo apt-get install -y python3-setuptools python3-yaml python3-dev
pip install -U pip pytest coverage pytest-cov Cython
- name: Test
run: pytest
MIT License MIT License
Copyright (c) 2021 Dronehub Group sp. z o. o. Copyright (c) 2021 Dronehub Group sp. z o. o.
Copyright (c) 2024 SMOK sp. z o. o.
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal
......
.. MiniJSON documentation master file, created by
sphinx-quickstart on Wed May 26 13:28:36 2021.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to MiniJSON's documentation! Welcome to MiniJSON's documentation!
==================================== ====================================
...@@ -26,6 +21,10 @@ You should avoid objects with keys different than strings, since they will alway ...@@ -26,6 +21,10 @@ You should avoid objects with keys different than strings, since they will alway
4-byte length field. This is to be improved in a future release. Key not being strings 4-byte length field. This is to be improved in a future release. Key not being strings
is anyway invalid JSON_. is anyway invalid JSON_.
.. warning::
Note that the valid mimetype for this is :code:`application/x-minijson`,
although you can use the :code:`application/minijson` in a pinch.
.. _JSON: https://www.w3schools.com/js/js_json_objects.asp .. _JSON: https://www.w3schools.com/js/js_json_objects.asp
......
...@@ -15,13 +15,16 @@ project_urls = ...@@ -15,13 +15,16 @@ project_urls =
Code = https://github.com/Dronehub/minijson Code = https://github.com/Dronehub/minijson
Issue tracker = https://github.com/Dronehub/minijson/issues Issue tracker = https://github.com/Dronehub/minijson/issues
classifier = classifier =
Development Status :: 4 - Beta Development Status :: 5 - Production/Stable
Programming Language :: Python Programming Language :: Python
Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy Programming Language :: Python :: Implementation :: PyPy
Operating System :: OS Independent Operating System :: OS Independent
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment