Skip to content

Commit

Permalink
Merge branch 'dev' into issue/568-patch2
Browse files Browse the repository at this point in the history
  • Loading branch information
creatorrr authored Oct 8, 2024
2 parents c2d3e10 + aa616d2 commit 9f80c18
Show file tree
Hide file tree
Showing 84 changed files with 19,837 additions and 1,060 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/bandit-security-check-python-agents-api.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: Bandit security check python agents-api
run-name: ${{ github.actor }} is checking the security of the code

on:
pull_request:
branches:
- main
- dev
paths:
- 'agents-api/**'
push:
paths:
- 'agents-api/**'

jobs:
bandit_check:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/doctoc-on-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
on: push

name: TOC Generator
jobs:
generateTOC:
name: TOC Generator
runs-on: ubuntu-latest
steps:
- uses: technote-space/toc-generator@v4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MAX_HEADER_LEVEL: 3
TOC_TITLE: '<h3>📖 Table of Contents</h3>'
FOLDING: true
17 changes: 10 additions & 7 deletions .github/workflows/lint-agents-api-pr.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: Lint and typecheck agents-api
run-name: ${{ github.actor }} is linting and typechecking the code

# TODO: Fix CI github actions
# SCRUM-26

on: [pull_request]
name: Lint agents-api
run-name: ${{ github.actor }} is linting the code

on:
pull_request:
paths:
- 'agents-api/**'
push:
paths:
- 'agents-api/**'

jobs:
Lint-And-Format:
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/test-agents-api-pr.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: Test agents-api
run-name: ${{ github.actor }} is testing the code

# TODO: Fix CI github actions
# SCRUM-26

on: [pull_request]
on:
pull_request:
paths:
- 'agents-api/**'
push:
paths:
- 'agents-api/**'

jobs:
Test:
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/typecheck-agents-api-pr.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: Typecheck agents-api
run-name: ${{ github.actor }} is typechecking the code

# TODO: Fix CI github actions
# SCRUM-26

on: [pull_request]
on:
pull_request:
paths:
- 'agents-api/**'
push:
paths:
- 'agents-api/**'

jobs:
Typecheck:
Expand Down
Loading

0 comments on commit 9f80c18

Please sign in to comment.