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

migrate to copier template #23

Merged
merged 4 commits into from
Jan 31, 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
8 changes: 8 additions & 0 deletions .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file is managed by Copier; DO NOT EDIT OR REMOVE.
_commit: v0.1.4
_src_path: git@github.com:quantco/copier-template-pre-commit-mirrors
conda_package: clangdev
description: This hook runs clang-tidy.
entry: clang-tidy
tool: clang-tidy
url: https://clang.llvm.org/extra/clang-tidy/
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
interval: monthly
reviewers:
- quantco/ci
groups:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/autoupdate.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Autoupdate

on:
workflow_dispatch:
schedule:
- cron: "0 */6 * * *"
- cron: "0 0 * * 0"

defaults:
run:
Expand All @@ -16,11 +17,10 @@ jobs:
steps:
- name: Checkout branch
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Set up Conda env
uses: mamba-org/provision-with-micromamba@3c96c0c27676490c63c18bc81f5c51895ac3e0e6
uses: mamba-org/setup-micromamba@8767fb704bd78032e9392f0386bf46950bdd1194
with:
environment-file: environment.yml
environment-name: check-env
- name: Find latest version
id: versions
Expand All @@ -31,8 +31,8 @@ jobs:
new_version=$(micromamba list -n check-env "$pkgname" --json | jq -r '.[0].version')
if [[ "$new_version" != "$old_version" ]]; then
sed -i "s/$old_version/$new_version/g" environment.yml
echo "pkgname=$pkgname" >> "$GITHUB_OUTPUT"
echo "new-version=$new_version" >> "$GITHUB_OUTPUT"
echo "pkgname=$pkgname" >> $GITHUB_OUTPUT
echo "new-version=$new_version" >> $GITHUB_OUTPUT
fi
- uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38
if: steps.versions.outputs.pkgname
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on:
push:
branches:
- master
- main
pull_request:

jobs:
Expand All @@ -16,6 +16,7 @@ jobs:
with:
ref: ${{ github.head_ref }}
- name: Set up Conda env
uses: mamba-org/provision-with-micromamba@3c96c0c27676490c63c18bc81f5c51895ac3e0e6
uses: mamba-org/setup-micromamba@8767fb704bd78032e9392f0386bf46950bdd1194
with:
environment-file: environment.yml
environment-name: test-env
11 changes: 5 additions & 6 deletions .github/workflows/keep-alive.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
name: Keep
on:
# pull_request:
schedule:
- cron: "0 6 * * SUN" # Once weekly on Sunday @ 0600 UTC
- cron: 0 6 * * SUN

jobs:
keep-alive:
name: Alive
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gautamkrishnar/keepalive-workflow@60b13c92aeda855e493b83aaf482c25da7e0043b
- uses: gautamkrishnar/keepalive-workflow@5b3128727d02fe1a892d0a2987517c9ec8ca7425
with:
commit_message: "Ah ah ah, stayin' alive"
commit_message: Ah ah ah, stayin' alive
committer_username: ForrestQuant
committer_email: "forrestquant@users.noreply.github.com"
time_elapsed: 50 # days
committer_email: forrestquant@users.noreply.github.com
time_elapsed: 50 # days
5 changes: 2 additions & 3 deletions .pre-commit-hooks.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
- id: clang-tidy-conda
name: clang-tidy-conda
description: 'This hook runs clang-tidy.'
entry: clang-tidy
language: conda
'types': ['c++']
args: []
types: ['c++']
require_serial: true
additional_dependencies: []
279 changes: 6 additions & 273 deletions LICENSE

Large diffs are not rendered by default.

13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
clang-tidy(-conda) mirror
===================
# clang-tidy mirror

Mirror of clang-tidy for pre-commit with conda as a language.

* For pre-commit: see https://github.com/pre-commit/pre-commit
* For clang-tidy: see https://clang.llvm.org/extra/clang-tidy/
For pre-commit: see [here](https://github.com/pre-commit/pre-commit)

### Using clang-tidy with pre-commit and conda:
For clang-tidy: see [here](https://clang.llvm.org/extra/clang-tidy/)

## Using clang-tidy with pre-commit and conda:

Add this to your `.pre-commit-config.yaml`

```yaml
- repo: https://github.com/Quantco/pre-commit-mirrors-clang-tidy
- repo: https://github.com/quantco/pre-commit-mirrors-clang-tidy
rev: '' # Use the sha / tag you want to point at
hooks:
- id: clang-tidy-conda
```

1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
channels:
- conda-forge
- nodefaults
dependencies:
- clangdev=17.0.6