Seyyed Ali Mohammadiyeh (Max Base)
Tehran Lug - 27 Feb 2027
Open-source Maintainer, GitHub Software Engineer CTO, asrez
maxbasecode@gmail.com
Automate your workflow from idea to production
name: CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Run a script run: echo "Hello, GitHub Actions!"
push
pull_request
workflow_dispatch
needs
jobs: test: runs-on: ubuntu-latest steps: - run: npm test deploy: needs: test runs-on: ubuntu-latest steps: - run: npm run deploy
name: Deploy on: push to: branches: [main] jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - run: ./deploy.sh
${{ secrets.SECRET_NAME }}
jobs: deploy: steps: - run: echo "Deploying with ${{ secrets.API_KEY }}"
jobs: test: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }} steps: - run: echo "Running on ${{ matrix.os }}"
job.status
jobs: test: steps: - run: echo "Running tests" - if: failure() run: echo "Tests failed!"
Actions
Runners
???
GitHub Actions is often viewed primarily as a CI/CD tool, It can automate all sorts of tasks throughout the software development lifecycle, from ideation to production and even beyond.
Brew a coffee as a gift once the official developers of the project make a successful, error-free commit.
Using GitHub Actions to Brew Coffee Hacking Bluetooth to Brew Coffee on GitHub Actions Part 1
Let's discuss!
Repository: github.com/BaseMax/github-actions-tehlug
Linkedin: linkedin.com/in/maxbase
Email: maxbasecode@gmail.com
Telegram: t.me/MAX_BASE
Seyyed Ali Mohammadiyeh
(MAX BASE)
Department of Pure Mathematics, Faculty of Mathematical Sciences, University of Kashan
alim@kashanu.ac.ir
**GitHub:** github.com/basemax