Skip to content

Commit

Permalink
github: add action
Browse files Browse the repository at this point in the history
  • Loading branch information
bitromortac committed Nov 20, 2022
1 parent 4aa08bd commit 047a169
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup env
run: |
echo "PROJECT_ROOT=${GITHUB_WORKSPACE}" >> $GITHUB_ENV
echo "PROJECT_NAME=combine" >> $GITHUB_ENV
echo "${GITHUB_WORKSPACE}/bin" >> $GITHUB_PATH

0 comments on commit 047a169

Please sign in to comment.