16 lines
307 B
YAML
16 lines
307 B
YAML
|
name: publish package
|
||
|
on:
|
||
|
push:
|
||
|
branches-ignore:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
Explore-Gitea-Actions:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Check out repository code
|
||
|
uses: actions/checkout@v4
|
||
|
- name: run tests
|
||
|
run: |
|
||
|
cd ${{ gitea.workspace }}
|
||
|
cargo test
|