forked from ebhomengo/niki
Compare commits
2 Commits
c1090b1516
...
8968eea907
Author | SHA1 | Date |
---|---|---|
Erfan Mohammadi | 8968eea907 | |
Erfan Mohammadi | 9ec80deb62 |
|
@ -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