<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Surya</title>
    <description>The latest articles on DEV Community by Surya (@surya1701).</description>
    <link>https://dev.to/surya1701</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F460133%2Fb07f4bb0-2d38-4d90-8689-0acfdcf9e750.png</url>
      <title>DEV Community: Surya</title>
      <link>https://dev.to/surya1701</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/surya1701"/>
    <language>en</language>
    <item>
      <title>Django tester</title>
      <dc:creator>Surya</dc:creator>
      <pubDate>Sun, 30 Aug 2020 08:57:02 +0000</pubDate>
      <link>https://dev.to/surya1701/django-tester-38kl</link>
      <guid>https://dev.to/surya1701/django-tester-38kl</guid>
      <description>&lt;h3&gt;
  
  
  My Workflow
&lt;/h3&gt;

&lt;p&gt;Note: # Django Tester&lt;/p&gt;

&lt;h3&gt;
  
  
  Submission Category:
&lt;/h3&gt;

&lt;p&gt;Note: # Wacky Wildcards&lt;/p&gt;

&lt;h3&gt;
  
  
  Yaml File or Link to Code
&lt;/h3&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;#This workflow will install Python dependencies, run tests and lint with a single version of Python
#
 #For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Python application
on:
  push:
    branches: [master]
  pull_request:
    branches: [master]
jobs:
  build:
    runs-on: ubuntu-latest
    services:
      postgres:
        image: postgres:10.8
        env:
          POSTGRES_USER: postgres
          POSTGRES_PASSWORD: postgres
          POSTGRES_DB: github_actions
        ports:
          - 5432:5432
        options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
    steps:
      - uses: actions/checkout@v2
      - name: Set up Python 3.8
        uses: actions/setup-python@v2
        with:
          python-version: 3.8
      - name: psycopg2 prerequisites
        run: sudo apt-get install python-dev libpq-dev
      - name: Install dependencies
        run: |
          python -m pip install --upgrade pip
          pip install -r requirements.txt
      - name: Run migrations
        run: python manage.py migrate
      - name: Run tests
        run: python manage.py test
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

</description>
      <category>actionshackathon</category>
    </item>
  </channel>
</rss>
