style: scale to width for mobile phones, increase font, smooth scrolling #100
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.0' | |
- name: install task | |
run: curl -Ls https://git.io/ttask.sh | sh | |
- name: install bundler | |
run: | | |
gem install bundler | |
bundle update --bundler | |
bundler install | |
- name: run tests | |
run: ./bin/task ci | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
- name: install task | |
run: curl -Ls https://git.io/ttask.sh | sh | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v2 | |
- name: run linter | |
run: ./bin/task lint | |
build: | |
name: Build blogctl | |
if: startsWith(github.ref, 'refs/tags/v') | |
needs: [test, lint] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
goos: [linux, darwin] | |
goarch: [amd64] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
- name: install task | |
run: curl -Ls https://git.io/ttask.sh | sh | |
- run: ./bin/task bin | |
- run: mv ci-build/blogctl ci-build/blogctl_${{ matrix.goos }}_${{ matrix.goarch }} | |
- uses: actions/upload-artifact@master | |
with: | |
name: build-artifacts | |
path: ci-build | |
release: | |
name: Release blogctl | |
if: startsWith(github.ref, 'refs/tags/v') | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install changelogger | |
run: curl -Ls https://git.io/changelogger.sh | sh | |
- uses: actions/download-artifact@master | |
with: | |
name: build-artifacts | |
path: ci-build | |
- name: Save changelog entries of current release | |
run: ./bin/changelogger release last > CHANGELOG_RELEASE.md | |
- name: Print changelog entries for debugging | |
run: cat CHANGELOG_RELEASE.md | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: ci-build/* | |
body_path: CHANGELOG_RELEASE.md | |
token: ${{ secrets.GITHUB_TOKEN }} |