diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 9a31f5a..d9dbb4f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,17 +1,16 @@ +name: Bonny Tests on: push jobs: - test: + build: runs-on: ubuntu-latest - name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} - strategy: - matrix: - otp: [20.x, 21.x, 22.x] - elixir: [1.9.x] + container: + image: elixir:1.9.1-slim steps: - - uses: actions/checkout@v1.0.0 - - uses: actions/setup-elixir@v1.0.0 - with: - otp-version: ${{matrix.otp}} - elixir-version: ${{matrix.elixir}} - - run: mix deps.get - - run: mix test + - uses: actions/checkout@v1 + - name: Install Dependencies + run: | + mix local.rebar --force + mix local.hex --force + mix deps.get + - name: Run Tests + run: mix test