Skip to content

Commit

Permalink
skip build and lint for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Y0sh1dk committed Dec 11, 2023
1 parent 8a868b7 commit 248670b
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,47 +7,47 @@ on:
pull_request:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
# lint:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout Repository
# uses: actions/checkout@v4

- name: Install Task
uses: arduino/setup-task@v1
# - name: Install Task
# uses: arduino/setup-task@v1

- name: Check go fmt
run: |
task check-format
# - name: Check go fmt
# run: |
# task check-format

- name: Check linting
run: |
task lint
# - name: Check linting
# run: |
# task lint

build:
needs: [lint]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout Repository
uses: actions/checkout@v4
# build:
# needs: [lint]
# runs-on: ubuntu-latest
# permissions:
# contents: write
# steps:
# - name: Checkout Repository
# uses: actions/checkout@v4

- name: Install Task
uses: arduino/setup-task@v1
# - name: Install Task
# uses: arduino/setup-task@v1

- name: Build Binary
run: |
task build-all
# - name: Build Binary
# run: |
# task build-all

- uses: stefanzweifel/git-auto-commit-action@v5
if: github.event_name == 'pull_request'
with:
commit_message: Update compiled binaries
file_pattern: "bin/*"
# - uses: stefanzweifel/git-auto-commit-action@v5
# if: github.event_name == 'pull_request'
# with:
# commit_message: Update compiled binaries
# file_pattern: "bin/*"

gen-tests:
needs: [lint, build]
# needs: [lint, build]
runs-on: ubuntu-latest
permissions:
contents: write
Expand All @@ -67,7 +67,7 @@ jobs:
- uses: stefanzweifel/git-auto-commit-action@v5
if: github.event_name == 'pull_request'
with:
commit_message: Update tests
commit_message: "[skip ci] Update tests"
file_pattern: ".github/workflows/test.yaml"

trigger-tests:
Expand Down

0 comments on commit 248670b

Please sign in to comment.