Skip to content

Commit

Permalink
ci: configure continuous integration pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
tshakalekholoane committed Jan 9, 2024
1 parent 69a4309 commit bbec729
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: "weekly"
15 changes: 15 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: ci

on: [pull_request, push]

jobs:
check:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4

- name: build
run: make

- name: run
run: ./bin/can -V
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# `can`

![Continuous Integration](https://github.com/tshakalekholoane/can/actions/workflows/ci.yaml/badge.svg)

`can` is a macOS command-line utility that provides an alternative to the `rm` command. Instead of permanently deleting files and directories, `can` moves them to the user's Trash, allowing for easy recovery if needed.

## Usage
Expand Down

0 comments on commit bbec729

Please sign in to comment.