Skip to content

Commit

Permalink
First working version
Browse files Browse the repository at this point in the history
  • Loading branch information
hongquan committed Jun 2, 2023
0 parents commit 2447d06
Show file tree
Hide file tree
Showing 7 changed files with 909 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
on: [push]

name: CI

jobs:
build:
name: git-del-branches
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal

- uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features --target-dir out/${{ matrix.os }}

- name: Archive built files
uses: actions/upload-artifact@v3
with:
name: Built binaries
path: |
*/${{ matrix.os }}/release/fix-name-case
*/${{ matrix.os }}/release/fix-name-case.exe
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit 2447d06

Please sign in to comment.