create basic template for Build and Deploy in gitea
All checks were successful
Build && Deploy / cargo build (push) Successful in 5m16s

This commit is contained in:
Akulij 2025-05-03 22:11:28 +03:00
parent 09950579da
commit dba7933c63

11
.gitea/workflows/cd.yaml Normal file
View File

@ -0,0 +1,11 @@
name: Build && Deploy
on: [push]
jobs:
test:
name: cargo build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo build --target x86_64-unknown-linux-gnu