Update .gitea/workflows/demo.yaml #2

Merged
ErfanTech merged 1 commits from erfantech-patch-1 into develop 2024-07-13 15:59:14 +00:00
1 changed files with 14 additions and 15 deletions
Showing only changes of commit 9ec80deb62 - Show all commits

View File

@ -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 }}."