Skip to content

Commit

Permalink
Add GH Action
Browse files Browse the repository at this point in the history
  • Loading branch information
hongquan committed May 24, 2023
1 parent 79efda7 commit a8944c1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/cargo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
on: [push]

name: CI

jobs:
build:
name: FixNameCase project
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:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features

- name: Archive built files
uses: actions/upload-artifact@v2
with:
name: Built binaries
path: target/release/fix-name-case

0 comments on commit a8944c1

Please sign in to comment.