From acabe929299ced05a64b05d42464fd654976c041 Mon Sep 17 00:00:00 2001 From: Carlos Polop Date: Fri, 18 Jun 2021 00:45:07 +0200 Subject: [PATCH] check --- .github/workflows/pre-linpeas-ubuntu.yml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pre-linpeas-ubuntu.yml b/.github/workflows/pre-linpeas-ubuntu.yml index ab08b09..f41ad61 100644 --- a/.github/workflows/pre-linpeas-ubuntu.yml +++ b/.github/workflows/pre-linpeas-ubuntu.yml @@ -13,8 +13,20 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - # This workflow contains a single job called "build" - build: + Run on Macos: + # The type of runner that the job will run on + runs-on: macos-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + # Runs a single command using the runners shell + - name: Run linpeas + run: linPEAS/linpeasasdasdasd.sh + + Run on Ubuntu: # The type of runner that the job will run on runs-on: ubuntu-latest @@ -47,6 +59,4 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} branch: ${{ github.ref }} - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v3 \ No newline at end of file +