Skip to content

Commit

Permalink
Update CI (#621)
Browse files Browse the repository at this point in the history
### Summary

1. Don't run the tests on push (shouldn't need it since we always make a
PR)
2. Build the website in the tests to make sure it compiles without error
(we should add some tests to make sure it looks ok too, but that's out
of scope of this PR).
  • Loading branch information
frankharkins committed Dec 1, 2023
1 parent 7dee5ff commit 5c5da84
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Sourcecode tests

on: [push, pull_request, workflow_dispatch]
on: [pull_request, workflow_dispatch]

jobs:
lint:
Expand Down Expand Up @@ -46,6 +46,8 @@ jobs:
run: |
unset CI
tox ${{ env.TOX_ENV }}
- name: Build website
run: tox -e website
coverage:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion ecosystem/resources/members/qiskit-qulacs.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ contact_info = "[email protected]"
alternatives = "_No response_"
affiliations = "Supported by the Unitary Fund microgrant program: https://unitary.fund/grants/"
labels = [ "Circuit simulator", "Converter", "Provider",]
groups = "provider"
group = "provider"
tier = "Community"
website = "https://qiskit-qulacs.netlify.app/"
tests_results = []
Expand Down

0 comments on commit 5c5da84

Please sign in to comment.