1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/.github/workflows/static-test.yml
Alexandre Abadie 9b339df085
gh_actions: fix rebase issue in static-test
Also remove the push triggers because they are useless
2020-11-17 15:19:56 +01:00

35 lines
998 B
YAML

name: static-tests
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
static-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
# Use the SHA of the PR branch as-is, not the PR branch merged
# in master (default behavior in GH actions)
# See https://github.com/actions/checkout#checkout-pull-request-head-commit-instead-of-merge-commit
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Setup git
run: |
git fetch origin master:master_upstream --no-tags
git config apply.whitespace nowarn
- name: Fetch riot/riotbuild Docker image
run: docker pull riot/riotbuild:latest
- name: Run static-tests
run: |
docker run --rm \
-e CI_BASE_BRANCH=master_upstream \
-v $(pwd):/data/riotbuild \
riot/riotbuild:latest \
make static-test