diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 20:40:02 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 20:40:02 +0300 |
commit | 8ff5c95366380a6521265816858d3f7ed66a3881 (patch) | |
tree | 0344bd1ff9447cc7656826caa20aeeab486934ee /.github/workflows/ci.yml | |
parent | workflows/test: use ubuntu-latest (diff) | |
download | config-links-8ff5c95366380a6521265816858d3f7ed66a3881.tar.gz config-links-8ff5c95366380a6521265816858d3f7ed66a3881.zip |
workflows/test -> workflows/ci
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..b28936d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,16 @@ +name: Test + +on: + push: + pull_request: + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + name: Test + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Test + run: ./.ci/test.sh |