Skip to content

Commit

Permalink
chore: configure OSS CI workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jianliang00 committed Oct 17, 2024
1 parent 0398abb commit 1949f8c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
name: ci

on:
push:
branches:
- main
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
revision:
description: "The revision of the source code to checkout"
required: true
type: string
fetch_depth:
description: "The depth to fetch"
required: true
default: "1"
type: string
id:
description: "The unique identifier to indentify the workflow run"
required: true
type: string

jobs:
check:
Expand Down
2 changes: 1 addition & 1 deletion core/common/httpx_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
from urllib.parse import urlparse

import asyncio_atexit
import httpx

import httpx
from core.common.http_status import client_error, server_error
from core.exceptions import HabitatException

Expand Down

0 comments on commit 1949f8c

Please # to comment.