build test

main
HeNine 1 year ago
parent 12cea9f20f
commit 1ff21b59a9

@ -0,0 +1,13 @@
name: Publish Cargo package
run-name: ${{ github.actor }} is building ${{ github.repository }}
on: [push]
jobs:
Publish-Cargo:
runs-on: ubuntu-latest
steps:
- name: Install Rust
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
- name: Check out repository code
uses: actions/checkout@v3
- name: Publish
run: cargo run -r
Loading…
Cancel
Save