Add github action to check that changelog has been updated #339
Workflow file for this run
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: build-test-and-check | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
paths-ignore: | |
- '**.rs' | |
- '**.js' | |
- '**.json' | |
- '**.html' | |
- 'Cargo.lock' | |
- '**Cargo.toml' | |
- 'diesel.toml' | |
pull_request: | |
paths-ignore: | |
- '**.rs' | |
- '**.js' | |
- '**.json' | |
- '**.html' | |
- 'Cargo.lock' | |
- '**Cargo.toml' | |
- 'diesel.toml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' | |
format_check: | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' |