ci: add test workflow and ignore Instruments traces
This commit is contained in:
parent
9a9c411bc9
commit
19853dbdf6
2 changed files with 13 additions and 0 deletions
7
.forgejo/workflows/test.yml
Normal file
7
.forgejo/workflows/test.yml
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
name: Test
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: self-hosted
|
||||||
|
steps:
|
||||||
|
- run: echo "Hello from self-hosted"
|
||||||
6
.gitignore
vendored
6
.gitignore
vendored
|
|
@ -248,6 +248,12 @@ cli/src/assets/rsync_release_*.bin
|
||||||
# *_test.go
|
# *_test.go
|
||||||
*_test_output/
|
*_test_output/
|
||||||
|
|
||||||
|
# Instruments trace files
|
||||||
|
Launch_*.trace/
|
||||||
|
|
||||||
|
# Native C++ build artifacts
|
||||||
|
native/build/
|
||||||
|
|
||||||
# Build artifacts
|
# Build artifacts
|
||||||
bin/
|
bin/
|
||||||
cli/zig-out/
|
cli/zig-out/
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue