Set fail-fast to false (by default it is true) in order to run all matrix jobs to see all Python versions that fail instead of pointing out only the first (and non-deterministic) one that fails.
Switch to use typing.Dict
Python 3.8 annotations needs Dict from typing.Dict (i.e. direct `dict is not usable).
Switch to use it in order to be usable from all Python versions.
Extend checks for more Python-s
Add a matrix in order to check at least:
Set
fail-fast
tofalse
(by default it istrue
) in order to run all matrix jobs to see all Python versions that fail instead of pointing out only the first (and non-deterministic) one that fails.Switch to use typing.Dict
Python 3.8 annotations needs Dict from typing.Dict (i.e. direct `dict is not usable).
Switch to use it in order to be usable from all Python versions.
Related/closes #49 and #71.