Compare commits
3 Commits
v0.0.1_hot
...
master
Author | SHA1 | Date | |
---|---|---|---|
097b837770 | |||
3f80f85402 | |||
8fb900da5d |
@ -28,7 +28,7 @@ steps:
|
|||||||
image: plugins/gitea-release
|
image: plugins/gitea-release
|
||||||
settings:
|
settings:
|
||||||
base_url: https://git.kaaass.net
|
base_url: https://git.kaaass.net
|
||||||
api_key:
|
api-key:
|
||||||
from_secret: gitea_token
|
from_secret: gitea_token
|
||||||
title: Release
|
title: Release
|
||||||
files:
|
files:
|
||||||
|
23
.gitea/workflows/rust.yml
Normal file
23
.gitea/workflows/rust.yml
Normal 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
|
Loading…
x
Reference in New Issue
Block a user