diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-10-03 19:10:24 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-10-03 19:10:24 +0300 |
commit | 1814af207fa4fb808eeda2d9878479578a01a5da (patch) | |
tree | 5f1011eb3fbfb225dc62e546abe36b1f4fb4ed4b /.github/workflows | |
parent | debian: 1.0-2 (diff) | |
parent | .ci/ -> test/ (diff) | |
download | config-links-1814af207fa4fb808eeda2d9878479578a01a5da.tar.gz config-links-1814af207fa4fb808eeda2d9878479578a01a5da.zip |
Merge tag 'v1.0.1' into debian
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml (renamed from .github/workflows/test.yml) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/ci.yml index 118a7df..41563bc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Test +name: CI on: push: @@ -7,10 +7,10 @@ on: jobs: test: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: Test steps: - name: Checkout uses: actions/checkout@v2 - - name: Run the tests - run: ./.ci/test.sh + - name: Test + run: ./test/test.sh |