Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Neon committed Jan 20, 2024
0 parents commit d18c646
Show file tree
Hide file tree
Showing 7 changed files with 2,290 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Rust

on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Run tests
run: cargo test --verbose
- name: Build
run: cargo build --verbose --release
- name: Upload Build Artifact
uses: actions/upload-artifact@v3.1.3
with:
# Artifact name
name: c2pastrip
path: target/release/c2pastrip
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 d18c646

Please sign in to comment.