mirror of https://github.com/sgoudham/git-view.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
396 B
YAML
26 lines
396 B
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'src/**'
|
|
- 'tests/**'
|
|
- '.github/**'
|
|
- 'Cargo.toml'
|
|
- 'Cargo.lock'
|
|
branches:
|
|
- '**'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'src/**'
|
|
- 'tests/**'
|
|
- '.github/**'
|
|
- 'Cargo.toml'
|
|
- 'Cargo.lock'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: 'echo "No build required"'
|