Skip to content

Commit

Permalink
yaml formatting (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
ityonemo committed Aug 4, 2024
1 parent 6130640 commit 27593db
Showing 1 changed file with 42 additions and 42 deletions.
84 changes: 42 additions & 42 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,45 +5,45 @@ jobs:
runs-on: macos-latest
name: MacOS-latest-latest
steps:
- uses: actions/checkout@v2
- name: update-brew
run: brew update
- name: install-elixir
run: brew install elixir

- name: activate hex
run: yes | mix local.hex

- name: get elixir version
id: elixir-version
run: elixir --version | tail -n 1 | awk '{ print $2 }'

- uses: actions/cache@v1
id: deps-cache
with:
path: deps
key: ${{ runner.os }}-mix-${{ steps.elixir-version.outputs.stdout }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}

- name: Install dependencies
run: mix deps.get

- uses: actions/cache@v1
id: build-cache
with:
path: _build
key: ${{ runner.os }}-build-${{ steps.elixir-version.outputs.stdout }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}

- name: Compile base
run: mix compile

- name: Get Zig version
id: zig-version
run: mix eval "IO.puts(Zig.version())"

- name: Get Zig
run: mix zig.get

- name: Run Tests
env:
RUNNING_CI: "true"
run: mix test --exclude no_ci
- uses: actions/checkout@v2
- name: update-brew
run: brew update
- name: install-elixir
run: brew install elixir

- name: activate hex
run: yes | mix local.hex
- name: get elixir version
id: elixir-version
run: elixir --version | tail -n 1 | awk '{ print $2 }'
- uses: actions/cache@v1
id: deps-cache
with:
path: deps
key: ${{ runner.os }}-mix-${{ steps.elixir-version.outputs.stdout }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
- name: Install dependencies
run: mix deps.get
- uses: actions/cache@v1
id: build-cache
with:
path: _build
key: ${{ runner.os }}-build-${{ steps.elixir-version.outputs.stdout }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
- name: Compile base
run: mix compile
- name: Get Zig version
id: zig-version
run: mix eval "IO.puts(Zig.version())"
- name: Get Zig
run: mix zig.get
- name: Run Tests
env:
RUNNING_CI: "true"
run: mix test --exclude no_ci

0 comments on commit 27593db

Please sign in to comment.