diff --git a/.github/workflows/housekeeping-format.yml b/.github/workflows/housekeeping-format.yml new file mode 100644 index 000000000..e57553a7e --- /dev/null +++ b/.github/workflows/housekeeping-format.yml @@ -0,0 +1,25 @@ +name: "Housekeeping" +on: + push: + branches: + - master + - release/* + pull_request: + branches: + - master + +jobs: + test: + name: "mix format" + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: erlef/setup-beam@v1 + with: + otp-version: 26.2 + elixir-version: 1.16.0 + - run: mix deps.get + - run: mix compile + - run: ./test/check_formatted.sh