diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 2443f16..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: build -on: - push: - branches: - - master - pull_request: - branches: - - master -jobs: - ci: - name: Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}} - runs-on: ${{matrix.os}} - container: - image: erlang:${{matrix.otp_vsn}} - strategy: - matrix: - otp_vsn: [19.3, 20.3, 21.0, 22.0] - os: [ubuntu-latest] - steps: - - uses: actions/checkout@v2 - - run: rebar3 --version - - run: rebar3 eunit - - run: '[[ 0 -eq $(git --no-pager diff | wc -l) ]]' diff --git a/.github/workflows/erlang.yml b/.github/workflows/erlang.yml index 8b13789..2443f16 100644 --- a/.github/workflows/erlang.yml +++ b/.github/workflows/erlang.yml @@ -1 +1,24 @@ - +--- +name: build +on: + push: + branches: + - master + pull_request: + branches: + - master +jobs: + ci: + name: Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}} + runs-on: ${{matrix.os}} + container: + image: erlang:${{matrix.otp_vsn}} + strategy: + matrix: + otp_vsn: [19.3, 20.3, 21.0, 22.0] + os: [ubuntu-latest] + steps: + - uses: actions/checkout@v2 + - run: rebar3 --version + - run: rebar3 eunit + - run: '[[ 0 -eq $(git --no-pager diff | wc -l) ]]'