8 Commits

Author SHA1 Message Date
587a0be9cf fixing artifact upload
All checks were successful
Test / test (push) Successful in 40s
Build / test (pull_request) Successful in 1m26s
2026-04-15 01:41:53 -04:00
7c499c1e93 fixing artifact upload
Some checks failed
Test / test (push) Successful in 40s
Build / test (pull_request) Failing after 3s
2026-04-15 01:28:30 -04:00
03e830575d fixing artifact upload
Some checks failed
Test / test (push) Successful in 40s
Build / test (pull_request) Failing after 11s
2026-04-15 01:26:26 -04:00
4733dd12ed fixing artifact upload
Some checks failed
Test / test (push) Successful in 39s
Build / test (pull_request) Failing after 1m27s
2026-04-15 01:03:27 -04:00
72973791db upload artifact
Some checks failed
Test / test (push) Successful in 41s
Build / test (pull_request) Failing after 1m41s
2026-04-15 00:59:10 -04:00
59fba3ef7a change workflow target
All checks were successful
Test / test (push) Successful in 38s
Build / test (pull_request) Successful in 1m26s
2026-04-15 00:49:03 -04:00
807d75ac31 fixing workflow
All checks were successful
Test / test (push) Successful in 39s
2026-04-15 00:46:22 -04:00
e861bf99f7 more build actions testing
Some checks failed
Test / test (push) Has been cancelled
2026-04-15 00:42:58 -04:00

View File

@@ -1,9 +1,9 @@
name: Build name: Build
on: on:
- release: release:
types: [published] types:
- pull_request: - published
types: [opened, edited] pull_request:
jobs: jobs:
test: test:
@@ -12,6 +12,10 @@ jobs:
- uses: actions/checkout@v5 - uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@stable - uses: dtolnay/rust-toolchain@stable
- name: Run tests - name: Run tests
run: cargo test run: cargo test --release
- name: Run tests - name: Run build
run: cargo build --release --target x86_64-unknown-linux-gnu run: cargo build --release --target x86_64-unknown-linux-gnu
- uses: https://github.com/christopherHX/gitea-upload-artifact@v4
with:
name: rusty-task
path: target/x86_64-unknown-linux-gnu/release/rusty-tasks