Skip to content

Commit

Permalink
Merge branch 'develop' into op-number-constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
sainak authored Jun 3, 2024
2 parents ce1bc9c + 7b90428 commit 4c928f2
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 156 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ env:

jobs:
test:
uses: ./.github/workflows/test-base.yml
uses: ./.github/workflows/reusable-test.yml

build:
needs: test
Expand Down
77 changes: 0 additions & 77 deletions .github/workflows/deployment-branch.yaml

This file was deleted.

64 changes: 0 additions & 64 deletions .github/workflows/deployment-lambda.yaml

This file was deleted.

10 changes: 4 additions & 6 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,12 @@ jobs:
name: Build docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v3
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: 'pipenv'
cache-dependency-path: |
Pipfile.lock

- name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
Expand All @@ -53,7 +51,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download sphinx documentation
uses: actions/download-artifact@v3
Expand All @@ -66,7 +64,7 @@ jobs:
touch build/.nojekyll
- name: Deploy docs
uses: JamesIves/github-pages-deploy-action@v4.4.3
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: build
8 changes: 4 additions & 4 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ on:
- staging
merge_group:

permissions: { }

jobs:
build:
if: github.repository == 'coronasafe/care'
name: Lint Code Base
runs-on: ubuntu-latest
permissions:
Expand All @@ -19,14 +20,13 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Lint Code Base
uses: github/super-linter/slim@v5
uses: super-linter/super-linter/slim@v6
env:
DEFAULT_BRANCH: develop
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: false
VALIDATE_PYTHON_BLACK: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Release on Push
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Necessary to fetch all tags

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ jobs:
run: make test-coverage

- name: Upload coverage report
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

- name: Move cache
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-merge-queue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ on:

jobs:
test:
uses: ./.github/workflows/test-base.yml
uses: ./.github/workflows/reusable-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ concurrency:

jobs:
test:
uses: ./.github/workflows/test-base.yml
uses: ./.github/workflows/reusable-test.yml

0 comments on commit 4c928f2

Please sign in to comment.