Qiskit / red-queen

Quantum software benchmarking tool
Apache License 2.0
18 stars 15 forks source link

Fix CI configuration for lint job #8

Closed mtreinish closed 2 years ago

mtreinish commented 2 years ago

Previously in #5 we added a CI job to enforce that lint was passing before we merge a PR. However, that new job was setup to run with Python 3.10 but didn't properly quote the python version which led gha to treat the Python version as a float instead of a string. This wasn't caught because the PR was opened from a fork instead of a branch and initial CI configurations aren't triggered on a PR from a fork. This commit fixes this issue by quoting the python version in the yaml configuration to ensure that CI can run.