Compare commits

...

3 Commits

Author SHA1 Message Date
097b837770
ci: Action 中初始化 Rust 工具链
All checks were successful
continuous-integration/drone/push Build is passing
Build and test / build (push) Successful in 7m48s
2023-04-25 00:40:01 +08:00
3f80f85402
ci: 增加 action
Some checks failed
Build and test / build (push) Failing after 7s
continuous-integration/drone/push Build is passing
2023-04-25 00:35:34 +08:00
8fb900da5d
Fix drone release config
All checks were successful
continuous-integration/drone/push Build is passing
2021-02-05 19:12:42 +08:00
2 changed files with 24 additions and 1 deletions

View File

@ -28,7 +28,7 @@ steps:
image: plugins/gitea-release
settings:
base_url: https://git.kaaass.net
api_key:
api-key:
from_secret: gitea_token
title: Release
files:

23
.gitea/workflows/rust.yml Normal file
View File

@ -0,0 +1,23 @@
name: Build and test
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: https://github.com/actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose