Skip to content

Commit

Permalink
ci: policy check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lengau committed Oct 23, 2024
1 parent cc53f65 commit bf06dfd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 14 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/cla-check.yaml

This file was deleted.

7 changes: 7 additions & 0 deletions .github/workflows/policy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: Check policy
on:
pull_request:

jobs:
policy:
uses: lengau/starflow/.github/workflows/.yaml@work/CRAFT-3602/test-workflows
5 changes: 1 addition & 4 deletions .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ on:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: lengau/starflow/lint@work/CRAFT-3602/test-workflows
uses: lengau/starflow/.github/workflows/lint.yaml@work/CRAFT-3602/test-workflows
test:
uses: lengau/starflow/.github/workflows/test-python.yaml@work/CRAFT-3602/test-workflows
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,15 @@ clean: ## Clean up the development environment
.PHONY: install-uv
install-uv:
ifneq ($(shell command -v uv),)
else ifneq ($(shell command -v uv.exe),)
else ifneq ($(shell command -v snap),)
sudo snap install --classic astral-uv
else ifneq ($(shell command -v brew),)
brew install uv
else ifeq ($(OS),Windows_NT)
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
else
pipx install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
endif

.PHONY: install-codespell
Expand Down

0 comments on commit bf06dfd

Please sign in to comment.