Eray Erdin
Eray Erdin's Programming Blog

Eray Erdin's Programming Blog

Follow
homePersonal BlogContent Licensebadges
Tag

GitHub

#github

More content

Read more stories on Hashnode


Articles with this tag

Checking Unused Dependencies in a Rust Project with Github Actions

Nov 30, 20212 min read 1.7K views

TL;DR Below is the .github/workflows/udeps.yaml file I have come up with: name: udeps on: [push, pull_request] jobs: Test: strategy: ...

Checking Unused Dependencies in a Rust Project with Github Actions

Complete Guide to Setup SSH Keys for Github (in Linux)

May 18, 20218 min read 840 views

How to not Enter A Password and Still Be Safe ยท I use 2FA wherever I can. One of them is Github. However, the problem with 2FA, at least for Github, is...

Complete Guide to Setup SSH Keys for Github (in Linux)

Quick Note: Allow Failures on Github Actions

Dec 7, 2019320 views

TL;DR command || true # true will return exit-code 0 no matter what The Story I was in the process of developing a new library for Django and...

Quick Note: Allow Failures on Github Actions