This repository was archived by the owner on Dec 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ name : Bug report
3+ about : Create a report to help us improve
4+ title : ' '
5+ labels : ' '
6+ assignees : ' '
7+
8+ ---
9+
10+ ** Describe the bug**
11+ A clear and concise description of what the bug is.
12+
13+ ** To Reproduce**
14+ Steps to reproduce the behavior:
15+ 1 . Go to '...'
16+ 2 . Click on '....'
17+ 3 . Scroll down to '....'
18+ 4 . See error
19+
20+ ** Expected behavior**
21+ A clear and concise description of what you expected to happen.
22+
23+ ** Screenshots**
24+ If applicable, add screenshots to help explain your problem.
25+
26+ ** Desktop (please complete the following information):**
27+ - OS: [ e.g. iOS]
28+ - Browser [ e.g. chrome, safari]
29+ - Version [ e.g. 22]
30+
31+ ** Additional context**
32+ Add any other context about the problem here.
Original file line number Diff line number Diff line change 1+ # This is a basic workflow to help you get started with Actions
2+
3+ name : CI
4+
5+ # Controls when the workflow will run
6+ on :
7+ # Triggers the workflow on push or pull request events but only for the "master" branch
8+ push :
9+ branches : [ "master" ]
10+ pull_request :
11+ branches : [ "master" ]
12+
13+ # Allows you to run this workflow manually from the Actions tab
14+ workflow_dispatch :
15+
16+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
17+ jobs :
18+ test :
19+ strategy :
20+ matrix :
21+ os : [ubuntu-latest]
22+ runs-on : ${{matrix.os}}
23+ steps :
24+ - uses : actions/checkout@v2
25+ - uses : goto-bus-stop/setup-zig@v2
26+ with :
27+ version : 0.15.1
28+ - run : zig build test
29+ lint :
30+ runs-on : ubuntu-latest
31+ steps :
32+ - uses : actions/checkout@v2
33+ - uses : goto-bus-stop/setup-zig@v2
34+ with :
35+ version : 0.15.1
36+ - run : zig fmt --check src/*.zig
You can’t perform that action at this time.
0 commit comments