Skip to content

Commit

Permalink
Project setup (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
ubiratansoares authored Jun 20, 2024
1 parent 9eab88a commit 3ffa172
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.{sh,bats}]
indent_style = space
indent_size = 4
13 changes: 13 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"helpers:pinGitHubActionDigests",
":pinDevDependencies"
],
"osvVulnerabilityAlerts": true,
"dependencyDashboard": true,
"labels": [
"dependencies"
]
}
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright 2024 Dotanuki Labs
# SPDX-License-Identifier: MIT

name: CI

on:
pull_request:
push:
branches:
- main

jobs:
checks:
runs-on: ubuntu-22.04

steps:
- name: Project Checkout
uses: actions/[email protected]

- name: Run checks
run: echo "Done"
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_STORE
.idea
dist
19 changes: 19 additions & 0 deletions .mergify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright 2024 Dotanuki Labs
# SPDX-License-Identifier: MIT

pull_request_rules:
- name: Automatic merge for Renovate pull requests
conditions:
- author~=^renovate\[bot\]$
- check-success=checks
actions:
merge:
method: squash

- name: Be author's friend
conditions:
- author~=ubiratansoares
- check-success=checks
actions:
merge:
method: squash
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# fredius
Dockerized conventions to drive Rust quality checks and CI builds
# Callinectes

Dockerized conventions to drive Rust quality checks

0 comments on commit 3ffa172

Please sign in to comment.