forked from ebhomengo/niki
				
			Merge pull request 'Update .gitea/workflows/demo.yaml' (#2) from erfantech-patch-1 into develop
	
		
			
	
		
	
	
		
			
				
	
				checks / check and test (push) Waiting to run
				
					Details
				
			
		
	
				
					
				
			
				
	
				checks / check and test (push) Waiting to run
				
					Details
				
			
		
	Reviewed-on: #2
This commit is contained in:
		
						commit
						8968eea907
					
				| 
						 | 
					@ -1,19 +1,18 @@
 | 
				
			||||||
name: Gitea Actions Demo
 | 
					name: checks
 | 
				
			||||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
 | 
					on:
 | 
				
			||||||
on: [push]
 | 
					  - push
 | 
				
			||||||
 | 
					  - pull_request
 | 
				
			||||||
 | 
					
 | 
				
			||||||
jobs:
 | 
					jobs:
 | 
				
			||||||
  Explore-Gitea-Actions:
 | 
					  lint:
 | 
				
			||||||
 | 
					    name: check and test
 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
      - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
 | 
					      - uses: actions/checkout@v4
 | 
				
			||||||
      - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
 | 
					      - uses: actions/setup-go@v5
 | 
				
			||||||
      - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
 | 
					        with:
 | 
				
			||||||
      - name: Check out repository code
 | 
					          go-version-file: 'go.mod'
 | 
				
			||||||
        uses: actions/checkout@v4
 | 
					      - name: vet checks
 | 
				
			||||||
      - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
 | 
					        run: go vet -v ./...
 | 
				
			||||||
      - run: echo "🖥️ The workflow is now ready to test your code on the runner."
 | 
					      - name: build
 | 
				
			||||||
      - name: List files in the repository
 | 
					        run: go build -v ./...
 | 
				
			||||||
        run: |
 | 
					 | 
				
			||||||
          ls ${{ gitea.workspace }}
 | 
					 | 
				
			||||||
      - run: echo "🍏 This job's status is ${{ job.status }}."
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue