Setup Github Actions for Elixir CI/CD

Поделиться
HTML-код
  • Опубликовано: 30 янв 2023
  • Github actions is awesome because it automatically runs tests and checks during a pull request for your project; making your project more reliable. Learn how to implement Continuous Integration and Continuous Delivery(CI/CD) with Github Actions in this tutorial.
    🔥 I’ve built an expert team at Or Equals that will revitalize your codebase. Use our experience in Elixir and Phoenix LiveView consulting so you can get back to focusing on the business. Schedule a meeting with me, and let’s chat 👉 orequals.com
    💻 Pragmatic Studio’s course is the most efficient way to learn Elixir/Phoenix LiveView. Use the course that I use to teach all my apprentices:
    ➤ Phoenix Liveview Course: pragmaticstudio.com/courses/p...
    ➤ Elixir Course: pragmaticstudio.com/courses/e...
    #liveview #phoenix #elixir #software #softwaredevelopment
  • НаукаНаука

Комментарии • 6

  • @wanglijun9190
    @wanglijun9190 25 дней назад

    if you can share the github repo would be cooler

  • @michaeldimmitt9974
    @michaeldimmitt9974 Год назад

    You can also run a github action via cron job!
    on:
    schedule:
    - cron: "0 12 * * *"
    This is 12:00 utc time or 7:00 am eastern time.
    I made use of an action with a cronjob when I needed to make a daily report on an environment that might be changed by others. Essentially I ran a test suite on that environment every day to have confidence that nothing changed. The action even shipped the report to a dashboard running in another app.

  • @danimusbar
    @danimusbar Год назад

    Awesome, keep up Sir 👍

  • @djsnakeyes
    @djsnakeyes Год назад

    This is awesome. Will there be a part 2 for the actual deployment phase?

    • @liveviewmastery
      @liveviewmastery  Год назад +1

      I wasn't planning on it. But I'll do a deployment to Render.com video and add how to wire that up to Github Actions