From 5289ac0a0eeedec03934f2d46529604230f97629 Mon Sep 17 00:00:00 2001 From: Lu Xu Date: Wed, 22 Sep 2021 10:44:56 +0800 Subject: [PATCH] try to update github actions, format and step name --- .github/workflows/c.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml index a74968e..563be2a 100644 --- a/.github/workflows/c.yml +++ b/.github/workflows/c.yml @@ -2,19 +2,17 @@ name: Sample Test on: push: - branches: - - master + branches: [ master ] pull_request: - branches: - - master + branches: [ master ] jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - name: make + - uses: actions/checkout@v2 + - name: Build run: make - - name: test + - name: Test run: make test