Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Remove release actions #681

Merged
merged 7 commits into from
Jul 8, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/integration-master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Integration tests on master

# Runs on master merge only.
on:
push:
branches: ["master"]

jobs:
all-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
cache: true

- name: Run all tests.
run: go test -v ./... -cover
58 changes: 0 additions & 58 deletions .github/workflows/release.yml

This file was deleted.

3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Improvements
* [#686](https://github.com/NibiruChain/nibiru/pull/686) Add changelog enforcer to github actions.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As per https://keepachangelog.com/en/1.0.0/, these should be under the Unreleased section.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is inside! It did not appear on the PR though.

image


* [#681](https://github.com/NibiruChain/nibiru/pull/681) Remove automatic release and leave integration tests when merge into master.