Skip to content
Open
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
21 changes: 21 additions & 0 deletions .github/workflows/ci-boost.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI Boost
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Build
run: go build -v ./...
- name: Vet
run: go vet ./...
- name: Test
run: go test ./... -v
36 changes: 35 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,35 @@
# chi
# chi

A Go project for Bounty Hunter.

## Quick Start

```bash
# Build
go build -o chi main.go

# Run
./chi
# Output: Hello, Bounty Hunter!
```

## Development

```bash
# Run with go run
go run main.go

# Format code
go fmt ./...

# Vet code
go vet ./...
```

## CI Status

[![CI](https://github.com/RoseMark45/chi/actions/workflows/ci-boost.yml/badge.svg)](https://github.com/RoseMark45/chi/actions/workflows/ci-boost.yml)

## License

MIT