DEV Community

Tisha Jhabak
Tisha Jhabak

Posted on

Stepping into Github Actions

I have been tried to integrate the GitHub actions with my ML pipelines concerning a project, that helped me to keep checks on updates and errors.

My Workflow

This workflow will check for syntactical correctness, if the requirements installed are clean and run tests across different branches.

Submission Category:

Wacky Wildcards

Yaml File or Link to Code

`name: Super-Linter

on: push

jobs:
super-lint:
name: Lint code base
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

  - name: Run Super-Linter
    uses: github/super-linter@v3
    env:
      DEFAULT_BRANCH: main
      GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}`
Enter fullscreen mode Exit fullscreen mode

GitHub logo TishaJhabak1014 / customer-propensity-modelling

Customer Propensity Modelling w/ sklearn to allocate the potential customer prospects

customer-propensity-modelling-

Customer Propensity Modelling w/ sklearn to allocate the potential customer prospects




Conclusion

I have got the understanding of the basics on the GitHub actions to be part of every project. This Hackathon inspires me to explore more on the same.

Additional Resources / Info

[Note:] # (Be sure to link to any open source projects that are using your workflow!)

[Reminder]: # (Submissions are due on December 8th, 2021 (11:59 PM PT or 2 AM ET/6 AM UTC on December 9th).

Top comments (0)