Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: run main on pr event #139

Merged
merged 2 commits into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ permissions:

env:
CLOUDSTACK_API_URL: http://localhost:8080/client/api
#CLOUDSTACK_VERSIONS: "['4.18.2.5', '4.19.1.3', '4.20.0.0']"
CLOUDSTACK_VERSIONS: "['1.7.0']"
jobs:
prepare-matrix:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
name: CI

"on":
on:
pull_request:
push:
branches:
- '**'
Expand Down
2 changes: 1 addition & 1 deletion tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from functools import partial
from unittest import TestCase
from unittest.mock import patch
from urllib.parse import urlparse, parse_qs
from urllib.parse import parse_qs, urlparse

from cs import (
CloudStack,
Expand Down
Loading