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

Check this repository with itself #3

Merged
merged 3 commits into from
Apr 18, 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
24 changes: 0 additions & 24 deletions .github/workflows/CICD-base.yaml

This file was deleted.

17 changes: 17 additions & 0 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
static-analysis:
runs-on: ubuntu-latest

steps:
- uses: uclahs-cds/tool-static-analysis@v1
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
---

## [Unreleased]

## Changed
- "Dogfood" action to check itself

## [v1.0.0] - 2024-04-18

### Added
- Add README documentation about usage and versioning
- Bootstrap Action for static analysis
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Run static analyses for code style, linting, and repository configuration.
## Usage
```yaml
---
name: Static analysis
name: CI

on:
push:
Expand All @@ -16,7 +16,7 @@ on:
- main

jobs:
analysis:
static-analysis:
runs-on: ubuntu-latest

steps:
Expand Down