Skip to content

Commit

Permalink
rust.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
artjoma committed Oct 15, 2023
1 parent 43969f2 commit 7eb609c
Showing 1 changed file with 27 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: artifact

on:
push:
branches: [main]
pull_request:
branches: [main]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --release --verbose

- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
with:
name: artifact
path: target/release
retention-days: 20

0 comments on commit 7eb609c

Please sign in to comment.