exmr/.gitea/workflows/checks.yaml
Vladimir Rubin 8c4ec2e59a
Some checks failed
Checks / check (push) Failing after 1m7s
ci(formatting): add formatting and linting
add workflows

change to proper action

fix(ci): remove rebar3

fix

fix2

fix3

maby this will fix it

i am stupid

fuck

fukcfuckfuckfuck

the fuck??

3000th commit i swear

fuck yeah

fuck yeahhhhh

fuck nooo

crud app fuck the fuck

datastate

hell yeah

fuck fuck fuck fuck fuck i hate this

fuck you

fuck?

fuck maybe now???

maybe this way

да ёбанный в рот

test

fuck you

i am so fuckng stupdi

maybe now
2024-11-17 21:46:55 +02:00

46 lines
1,005 B
YAML

name: Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup ssl
run: wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.23_amd64.deb && sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.23_amd64.deb
- uses: erlef/setup-beam@v1
env:
ImageOS: ubuntu24
with:
otp-version: "25"
elixir-version: "1.17.3"
install-rebar: false
- name: Install dependencies
run: mix deps.get
- name: Check formatting
run: mix format --check-formatted
- name: Run Credo
run: mix credo --strict
- name: Check for compiler warnings
run: mix compile --warnings-as-errors
- name: Run tests
run: mix test
- name: Check for unused dependencies
run: mix deps.unlock --check-unused